-2

I want to concat a single quote at the end of the string How can i do this thing in php?

    $file = $this->form->getValue('doc');
    $filename = $file->getOriginalName();
    $file_name=$fn.'_'.md5($fiename);
    $extension = $file->getExtension($file->getOriginalExtension());
4

3 に答える 3

0

これを試して:

$file_name=$fn.'_'.md5($fiename).",";

in php.は concat に使用されます。

于 2013-11-13T06:44:59.107 に答える