2022-05-23
<?php
/*
* Replaces spaces with sybmol '%20'
* But then in some cases we need to ensure that folder
* or files contain ' ' and not '%20'.
*
* With proper use of this method, users will be able
* to create folders or files with blank spaces.
*
* @example $name = "My%20Folder%20With%20Spaces";
* @param string $name
* @return string $name ()= "My Folder With Spaces")
*/
private function getBlankSpacesBack($name)
{
$name = str_replace('%20', ' ', $name);
return $name;
}
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolor, ipsam sit. Assumenda autem, eaque excepturi laudantium modi neque numquam quas, quod repellendus, reprehenderit totam vel vitae voluptates! Placeat, quam, unde!
https://docs.phpdoc.org/3.0/guide/references/phpdoc/tags/index.html#tag-reference
$ wget https://phpdoc.org/phpDocumentor.phar
$ chmod +x phpDocumentor.phar
$ mv ./phpDocumentor.phar /usr/local/bin/phpdoc