C:\Windows\System32\winevt\Logs 8 kwi 2013
Ustawienie wartości domyślnej
Wartości domyślne:
$default_position=5;Określenie wartości domyślnej:
$_position = $_REQUEST['position'] ? $_REQUEST['position'] : $default_position; 7 kwi 2013
Nagłówki do wysłania pliku csv
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: ".gmdate("D, d M Y H:i:s")." GMT");
header("Content-Type: unknown");
header("Content-Disposition: attachment; filename=".urlencode($filename));
header("Content-Length: ".strlen($content)."");
header('Pragma: public');
echo $content;
exit(); 21 mar 2013
Zamiana treści z adresem url w link
!{$content|regex_replace:"/http([s]?):\/\/([^\/]+)\/(.+)/i":"<a href=\"http\\1://\\2/\\3\" target=\"_blank\">\\1\\2\\3</a>"}! 14 mar 2013
Wyrażenie regularne w editplus
wyrażenie:
(.*)fputs\((.*)\);zamiana:
\1fputs($this->connection,\2);\1if($this->deb) echo (\2);