1. php.ini中memory_limit字段可以设置php内存max值,解决allowed memory size of 134217728 bytes exhausted 问题。
2.字面量与变量与常量
int a;//a变量
int
a;
//a变量
const int b=10;//b为常量,10为字面量
const
b=10;
//b为常量,10为字面量
string str=
"hello world"
;
//str为变量,hello world为也字面量