Lines Matching refs:trace
2 mysqli_debug() - append to trace file
25 …if (true !== ($tmp = mysqli_debug(sprintf('d:t:O,%s/mysqli_debug_phpt.trace', sys_get_temp_dir()))…
33 $trace_file = sprintf('%s/mysqli_debug_phpt.trace', sys_get_temp_dir());
41 // will mysqli_debug() mind if the trace file gets removed?
46 printf("[004] Cannot create trace file to test append mode\n");
50 printf("[005] Cannot write to trace file.\n");
61 $trace = file_get_contents($trace_file);
62 if (!strstr($trace, 'mysqli_debug.phpt test line'))
63 …printf("[008] Cannot find original file content any more. Seems that the trace file got overwritte…
73 if (!strstr(file_get_contents($trace_file), $trace))
74 …printf("[011] Cannot find original file content any more. Seems that the trace file got overwritte…
77 // what will happen if we create new trace entries...?
81 printf("[012] Could not remove trace file '%s'.\n", $trace_file);