Functions php - sinsunsan/archiref_wiki GitHub Wiki
-
htmlentities
http://php.net/manual/en/function.htmlentities.php
Convert special characters '" & ... into their html entities equivalent -
html_entity_decode
http://php.net/manual/en/function.html-entity-decode.php
The contrary of htmlentities, remove unwanted "walk" the <b>dog< -
microtime
http://php.net/manual/fr/function.microtime.php
Afficher un timestamp -
list
http://php.net/manual/fr/function.list.php
Permet d'assigner en un seul appel des valeurs à plusieurs variables
$info = array('coffee', 'brown', 'caffeine');
// Liste toutes les variables
list($drink, $color, $power) = $info;
echo "$drink is $color and $power makes it special.\n";
-
die
Interrompt un script php
die();
-
clone
http://php.net/manual/en/language.oop5.cloning.php
Allow to clone an object with all it's properties -
get_defined_vars
http://php.net/manual/en/function.get-defined-vars.php
Output all the defined vars in a given context