|
file-fetcher
|
Variables | |
| $globalString = 'Hello' | |
| $globalIntTruthy = 1 | |
| $globalIntFalsey = 0 | |
| $globalFloat = 1.123 | |
| $globalBoolTrue = true | |
| $globalBoolFalse = false | |
| $globalNull = null | |
| $globalArray = ['foo'] | |
| $globalNestedArray = [['foo']] | |
| $globalObject = (object) ['foo' => 'bar'] | |
| $globalObjectWithBackSlashString = (object) ['foo' => 'back\\slash'] | |
| $globalObjectWithDoubleBackSlashString = (object) ['foo' => 'back\\\\slash'] | |
| $globalArray = ['foo'] |
| $globalBoolFalse = false |
| $globalBoolTrue = true |
| $globalFloat = 1.123 |
| $globalIntFalsey = 0 |
| $globalIntTruthy = 1 |
| $globalNestedArray = [['foo']] |
| $globalNull = null |
| $globalObject = (object) ['foo' => 'bar'] |
| $globalObjectWithBackSlashString = (object) ['foo' => 'back\\slash'] |
| $globalObjectWithDoubleBackSlashString = (object) ['foo' => 'back\\\\slash'] |
| $globalString = 'Hello' |
1.8.17