Home
last modified time | relevance | path

Searched refs:read (Results 176 – 200 of 552) sorted by path

12345678910>>...23

/PHP-7.4/ext/session/tests/
H A Dbug60634_error_1.phpt23 function read($id) {
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dbug60634_error_2.phpt23 function read($id) {
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dbug60634_error_3.phpt23 function read($id) {
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dbug60634_error_4.phpt23 function read($id) {
40 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dbug60634_error_5.phpt23 function read($id) {
39 session_set_save_handler('open', 'close', 'read', 'write', 'destroy', 'gc');
H A Dbug61728.phpt19 function read ($id) {
38 session_set_save_handler ("open", "close", "read", "write", "destroy", "gc");
H A Dbug67972.phpt2 Bug #67972: SessionHandler Invalid memory read create_sid()
H A Dbug69111.phpt2 Bug #69111 Crash in SessionHandler::read()
17 var_dump($sh->read(@$id));
24 Warning: SessionHandler::read(): Session is not active in %s on line 12
H A Dbug70133.phpt2 Bug #70133 (Extended SessionHandler::read is ignoring $session_id when calling parent)
14 public function read($session_id) {
15 return parent::read('mycustomsession');
H A Dbug71162.phpt22 public function read($sessid) {
H A Dbug74514.phpt2 Bug #74514 5 session functions incorrectly warn when calling in read-only/getter mode.
H A Dbug74936.phpt2 Bug #74936 session_cache_expire() triggers a warning in read mode.
H A Dbug78624.phpt27 public function read($key) {
H A Dbug79091.phpt31 public function read($session_id)
H A Dbug80889.phpt16 public function read($id) {
H A Drfc1867_sid_invalid.phpt53 Warning: Unknown: Failed to read session data: files (path: ) in Unknown on line 0
59 Warning: Unknown: Failed to read session data: files (path: ) in Unknown on line 0
H A Dsave_handler.inc13 * Session data lock is mandatory. Lock must be exclusive. i.e. Block read also.
49 function read($id) {
53 // read() would be the best place for locking for most save handlers.
59 // read MUST create file. Otherwise, strict mode will not work
62 // MUST return STRING for successful read().
72 // NOTE: This function may unlock session data locked by read(). If write() is
H A Dsave_handler_closures.inc5 foreach (array ('open', 'close', 'read', 'write', 'destroy', 'gc') as $fn) {
H A Dsession_module_name_variation2.phpt20 function read($id) { }
26 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dsession_module_name_variation3.phpt26 function read($id) { return ''; }
32 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dsession_save_path_variation2.phpt37 Warning: session_start(): Failed to read session data: files (path: %sblah) in %s on line %d
H A Dsession_save_path_variation3.phpt37 Warning: session_start(): Failed to read session data: files (path: %sblah) in %s on line %d
H A Dsession_set_save_handler_basic.phpt16 …* Prototype : bool session_set_save_handler(callback $open, callback $close, callback $read, callb…
31 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
46 session_set_save_handler("open", "close", "read", "write", "destroy", "gc");
H A Dsession_set_save_handler_class_001.phpt35 public function read($key) {
38 return parent::read($key);
H A Dsession_set_save_handler_class_002.phpt36 public function read($id) {
61 …array($handler, 'read'), array($handler, 'write'), array($handler, 'destroy'), array($handler, 'gc…

Completed in 46 milliseconds

12345678910>>...23