From professional translators, enterprises, web pages and freely available translation repositories.
only scalar data (boolean, integer, double and string) can be contained in constants.
seuls les types de données scalaires peuvent être placés dans une constante: c'est à dire les types booléen, entier, double et chaîne de caractères (soit boolean, integer, double et string).
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
when casting from a scalar or a string variable to an array, the variable will become the first element of the array:
lorsque vous transtypez un scalaire ou une chaîne en tableau, la variable verra son contenu affecté au premier élément du tableau.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
when casting from a scalar or a string variable to an object, the variable will become an attribute of the object; the attribute name will be 'scalar ':
l'attribut s'appellera 'scalar ':
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
$var = 'ciao'; $obj = (object) $var; echo $obj - scalar; / / outputs 'ciao'
?php $var = 'ciao'; $obj = (object) $var; echo $obj - scalar; / / affiche 'ciao'?
Last Update: 2011-10-24
Usage Frequency: 1
Quality: