作者:あおリンクス
关键词高亮
関数ハイライト($sString, $aWords) {
if (!is_array ($aWords) || emptyempty ($aWords) || !is_string ($sString)) {
false を返します;
}
$sWords = 爆破 ('|', $aWords);
return preg_replace ('@b('.$sWords.')b@si', '$1', $sString);
}
获取你のフィードバーナーの用人
関数 get_average_readers($feed_id,$interval = 7){
$today = date('Y-m-d', strtotime("now"));
$ago = date('Y-m-d', strtotime("-".$interval." days"));
$feed_url="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$feed_id."&dates=".$ago.",".$today;
$ch =curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $feed_url);
$data =curl_exec($ch);
curl_close($ch);
$xml = 新しい SimpleXMLElement($data);
$fb = $xml->feed->entry['circulation'];
$nb = 0;
foreach($xml->feed->children() as $circ){
$nb += $circ['circulation'];
}
ラウンドを返す($nb/$interval);
}
自動生成密暗号
function generatedPassword($length=9, $strength=0) {
$vowels = 'aeuy';
$consonants = 'bdghjmnpqrstvz';
if ($strength >= 1) {
$consonants .= 'BDGHJLMNPQRSTVWXZ';
}
if ($strength >= 2) {
$母音 .= "AEUY";
}
if ($strength >= 4) {
$子音 .= '23456789';
}
if ($strength >= 8 ) {
$母音 .= '@#$%';
}
$パスワード = '';
$alt = time() % 2;
for ($i = 0; $i
if ($alt == 1) {
$password .= $consonants[(rand() % strlen($consonants))];
$alt = 0;
} その他 {
$password .= $vowels[(rand() % strlen($vowels))];
$alt = 1;
}
}
$パスワードを返します;
}
压缩多个CSSファイル
header('Content-type: text/css');
ob_start("圧縮");
関数圧縮($buffer) {
/* コメントを削除 */
$buffer = preg_replace('!/*[^*]**+([^/][^*]**+)*/!', '', $buffer);
/* タブ、スペース、改行などを削除します。 */
$buffer = str_replace(array("rn", "r", "n", "t", ' ', ' ', ' '), '', $buffer);
$buffer を返します;
}
/* あなたの CSS ファイル */
include('master.css');
include('typography.css');
include('grid.css');
include('print.css');
include('handheld.css');
ob_end_flush();
获取短网址
関数 getTinyUrl($url) {
return file_get_contents("http://tinyurl.com/api-create.php?url=".$url);
}
生日计算年龄
に基づく
関数 age($date){
$year_diff = '';
$time = strtotime($date);
if(FALSE === $time){
戻ります '';
}
$date = date('Y-m-d', $time);
list($year,$month,$day) =explode("-",$date);
$year_diff = date("Y") – $year;
$month_diff = date("m") – $month;
$day_diff = date("d") – $day;
if ($day_diff
$year_diff を返します;
}
計算実行時間
//開始時刻の変数を作成します
$time_start = microtime(true);
// PHP/HTML/JavaScript/CSS などを配置します。こちら
//終了時刻の変数を作成します
$time_end = マイクロタイム(true);
// 2 つの時間を減算して秒を取得します
$time = $time_end - $time_start;
echo 'スクリプトには '.$time かかりました。'実行まで数秒';
PHP のルールモード
関数メンテナンス($mode = FALSE){
if($mode){
if(basename($_SERVER['SCRIPT_FILENAME']) != 'maintenance.php'){
header("場所: http://example.com/maintenance.php");
終了します;
}
}その他{
if(basename($_SERVER['SCRIPT_FILENAME']) == 'maintenance.php'){
header("場所: http://example.com/");
終了します;
}
}
}
CSS样式を阻止します
数字增加stndrd等
関数 make_ranked($rank) {
$last = substr( $rank, -1 );
$seclast = substr( $rank, -2, -1 );
if( $last > 3 || $last == 0 ) $ext = 'th';
else if( $last == 3 ) $ext = 'rd';
else if( $last == 2 ) $ext = 'nd';
それ以外の場合は $ext = 'st';
if( $last == 1 && $seclast == 1) $ext = 'th';
if( $last == 2 && $seclast == 1) $ext = 'th';
if( $last == 3 && $seclast == 1) $ext = 'th';
$rank.$ext を返します;
}