ホームページ >php教程 >php手册 >PHP大数据处理要注意的

PHP大数据处理要注意的

WBOY
WBOYオリジナル
2016-06-06 19:49:121903ブラウズ

1. 传递值使用引用传递 $a = get_large_array(); pass_to_function($a); 这样是传递变量的引用而不是拷贝 2.将大数据存在类的变量中 class A { function first() { $this-a = get_large_array(); $this-pass_to_function(); } function pass_to_function() {

1. 传递值使用引用传递

$a = get_large_array(); 
pass_to_function(&$a); 

这样是传递变量的引用而不是拷贝

2.将大数据存在类的变量中

class A 

function first() 

$this->a = get_large_array(); 
$this->pass_to_function(); 

function pass_to_function() 

//process $this->a 

3.变量使用完毕后尽快的unset变量,释放内存,减小脚本负担负担。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。