전문 번역가, 번역 회사, 웹 페이지 및 자유롭게 사용할 수 있는 번역 저장소 등을 활용합니다.
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).
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
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.
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
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 ':
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질:
$var = 'ciao'; $obj = (object) $var; echo $obj - scalar; / / outputs 'ciao'
?php $var = 'ciao'; $obj = (object) $var; echo $obj - scalar; / / affiche 'ciao'?
마지막 업데이트: 2011-10-24
사용 빈도: 1
품질: