如何在php变量中加号?

时间:2018-05-25 12:34:56

标签: php variables web

我想在php变量中存储加号,但它不接受。假设我想在变量$ num中存储+ 92XXXXXX。当我回声它给我结果92XXXXXX。加号去哪儿了?如何在php变量中存储这个数字+92444444。谢谢。

1 个答案:

答案 0 :(得分:0)

因为您在int变量中添加了一个字符串。以下是变量输出结果的一些示例:

$integer = 11; $variableAndString = '+' . 11; $string = '+12342';

$integer will output 11 $variableAndString will output +11 $string will output +1234