| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | function spl_object_id($object) |
||
| 9 | { |
||
| 10 | ob_start(); |
||
| 11 | var_dump($object); // object(foo)#INSTANCE_ID (0) { } |
||
|
1 ignored issue
–
show
|
|||
| 12 | return preg_replace('~.+#(\d+).+~s', '$1', ob_get_clean()); |
||
| 13 | } |
||
| 31 |