<?php
// classa.inc:
class A {
public $one = 1;
public function show_one() {
echo $this->one;
}
}
// page1.
$a = new A;
$s = serialize($a);
// store $s somewhere where page2.php can find it.
file_put_contents('store', $s);
// page2.php:
// this is needed for the unserialize to work properly.
$s = file_get_contents('store');
$a = unserialize($s);
// now use the function show_one() of the $a object.
$a->show_one();
?>
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): Failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): Failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on false in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): Failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): Failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on bool in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Output for 8.0.13
Warning: file_put_contents(store): Failed to open stream: Read-only file system in /in/sp51Z on line 17
Warning: file_get_contents(store): Failed to open stream: No such file or directory in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on bool in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Output for 7.3.32 - 7.3.33, 7.4.26, 7.4.33
Warning: file_put_contents(store): failed to open stream: Read-only file system in /in/sp51Z on line 17
Warning: file_get_contents(store): failed to open stream: No such file or directory in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on bool in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on bool in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Uncaught Error: Call to a member function show_one() on boolean in /in/sp51Z:28
Stack trace:
#0 {main}
thrown in /in/sp51Z on line 28
Process exited with code 255.
Output for 5.6.0 - 5.6.40
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Call to a member function show_one() on boolean in /in/sp51Z on line 28
Process exited with code 255.
Output for 5.5.0 - 5.5.38
Warning: file_put_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 17
Warning: file_put_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 17
Warning: file_get_contents(): open_basedir restriction in effect. File(store) is not within the allowed path(s): (/tmp:/in:/etc) in /in/sp51Z on line 24
Warning: file_get_contents(store): failed to open stream: Operation not permitted in /in/sp51Z on line 24
Fatal error: Call to a member function show_one() on a non-object in /in/sp51Z on line 28
Process exited with code 255.
Warning: file_put_contents(store): failed to open stream: Permission denied in /in/sp51Z on line 17
Warning: file_get_contents(store): failed to open stream: No such file or directory in /in/sp51Z on line 24
Fatal error: Call to a member function show_one() on a non-object in /in/sp51Z on line 28
Process exited with code 255.
<br />
<b>Warning</b>: file_put_contents(store) [<a href='function.file-put-contents'>function.file-put-contents</a>]: failed to open stream: Read-only file system in <b>/in/sp51Z</b> on line <b>17</b><br />
<br />
<b>Warning</b>: file_get_contents(store) [<a href='function.file-get-contents'>function.file-get-contents</a>]: failed to open stream: No such file or directory in <b>/in/sp51Z</b> on line <b>24</b><br />
<br />
<b>Fatal error</b>: Call to a member function show_one() on a non-object in <b>/in/sp51Z</b> on line <b>28</b><br />
Process exited with code 255.
Output for 4.4.2 - 4.4.9
<br />
<b>Parse error</b>: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/in/sp51Z</b> on line <b>5</b><br />
Process exited with code 255.
<br />
<b>Parse error</b>: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in <b>/in/sp51Z</b> on line <b>5</b><br />
Process exited with code 255.
Output for 4.3.2 - 4.3.4
<br />
<b>Parse error</b>: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in <b>/in/sp51Z</b> on line <b>5</b><br />
Process exited with code 255.