「new」 - クラスのインスタンスつまりオブジェクトを生成する際に利用
「clone」 - オブジェクトのクローン(コピー)を格納する際に利用
<pre>
<?php
class COLOR{
//empty
}
#オブジェクトの生成
var_dump( new COLOR );
#オブジェクトのクローンの生成
$n = new COLOR;
var_dump( clone $n );
?>
</pre>
▼結果
/demo/clone.html
<pre>
<?php
class COLOR{
//empty
}
#オブジェクトの生成
var_dump( new COLOR );
#オブジェクトのクローンの生成
$n = new COLOR;
var_dump( clone $n );
?>
</pre>
順位 | ページタイトル抜粋 | % |
---|---|---|
1 | new clone違い | 82 |
2 | define と const の違い | 48 |
3 | include | 44 |
4 | Doctrine | 42 |
5 | include require | 38 |
6 | popen | 38 |
7 | Propel | 35 |
8 | syntax error | 35 |
9 | include_path | 35 |
10 | Exceptionクラス | 35 |
11 | SessionHandler::gc | 34 |
12 | json_encode関数 | 33 |
13 | foreach文 | 32 |
14 | session.gc_maxlifetime | 30 |
15 | Composer | 30 |
16 | set_error_handler | 29 |
17 | ErrorExceptionクラス | 29 |
18 | No route found fo | 29 |
19 | Generators | 29 |
20 | setcookie関数 | 27 |
2024/11/23 14:38 更新 |