/**
* グローバル関数
*
* @author Avenger
* @version 1.14 $Id 2003-05-30 10:10:08 $
*/
/**
* プロンプトボックスをポップアップします
*
* @access public
* @param string $txt プロンプトボックスをポップアップします、$txt はポップアップされる内容です
* @return void
*/
function popbox($txt) {
echo "";
}
/**
* 不正操作警告
*
* @access public
* @param string $C_alert プロンプトエラーメッセージ
* @param string $I_goback 戻った後にどのページに戻るか、指定されていない場合は戻りません
* @return void
*/
function alert($C_alert,$I_goback='main.php') {
if(!empty($I_goback)) {
echo "<script>alert('$ C_alert');window.location.href='$I_goback';</script>";
} else {
echo "<script>alert('$C_alert');</script>";
}
}
/**
* ランダムな文字列を生成します
*
* 指定された長さのランダムな文字列を生成し、ユーザーに返します
*
* @access public
* @param int $len 生成された文字列の桁数
* @return string
*/
function randstr($len=6) {
$chars='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-@#~'; //
mt_srand((double)microtime()*1000000*getmypid()); からパスワードを構築するための文字 // 乱数ジェネレータのシード(必ず実行する必要があります)
$password='';
while(strlen($password) $password.=substr($chars,(mt_rand()%strlen($chars)),1);
$password を返す;
}
/**
* ドロップダウン メニューの選択された項目を決定します
*
* 文字列 1 と文字列 2 が等しいかどうかを決定して、等しい項目がドロップダウン メニューで選択されるようにします
*
* @access public
* @param string $str1 比較される文字列 1
* @param string $str2 比較される文字列 2
* @return string 等しい場合は文字列「selected」を返し、それ以外の場合は空の文字列を返します
*/
function ckselect($str1,$str2) {
if($str1==$str2) {
return ' 選択済み';
}
戻る '';
}
/**
* カスタム Ftp 関数
*
* @access private
* @return void
*/
function myftp($ftp_server,$ftp_port,$ftp_username,$ftp_password,$ftp_path='/') {
$ftpid=@ftp_connect($ftp_server,$ftp_port) さもなければ死ぬ(「FTP サーバーへの接続エラー!」);
@ftp_login($ftpid,$ftp_username,$ftp_password) or die('ログイン FTP エラー!');
@ftp_chdir($ftpid,'/'.$ftp_path) または die('Chdir Error!');
$ftpid を返す;
}
/**
* 中国語文字列の一部をインターセプト
*
* 指定された文字列の指定された長さだけをインターセプトする関数
*
* @access public
* @param string $str 文字化けせずに自動判別できる関数です。処理される文字列
* @param int $strlen インターセプトされるデフォルトの長さは 10 です
* @param string $other 省略記号を追加するかどうか、デフォルトは
* @return string
*/
function showtitle($str,$strlen=10,$other=true) {
$j = 0;
for($i=0;$i if(ord(substr($str,$i,1))>0xa0) $j++;
if($j%2!=0) $strlen++;
$rstr=substr($str,0,$strlen);
if (strlen($str)>$strlen && $other) {$rstr.='...';}
return $rstr;
}
/**
* リンクの作成
*
* @access public
* @param string url リンク先の URL
* @param string linktext 表示されるリンクテキスト
* @param string ターゲットフレームワーク
* @param string 追加の拡張パラメータ
* @return文字列
*/
function make_link ($url, $linktext=false, $target=false, $extras=false) {
return sprintf("%s",
$url,
($target ? ' target="'.$target.'"' : ''),
($extras ? ' '.$extras : '' )、
($linktext ? $linktext : $url)
);
}
/**
* ユーザーコメントのフォーマット
*
* @access public
* @param string
* @return void
*/
function clean_note($text) {
$text = htmlspecialchars(trim($text));
/* URL をリンクに変換 */
$text = preg_replace("/((mailto|http|ftp|nntp|news):.+?)(>|s|)|"|.s|$)/ ","13",$text);
/*この「修正」コードは最終的には廃止されます。*/
$fixes = array('
','
');
reset($fixes);
while (list(,$f) = each($fixes)) {
$text = str_replace(htmlspecialchars) ($f), $f, $text);
$text = str_replace(htmlspecialchars(strtoupper($f)), $f, $text);
/*
タグは非常に奇妙に見えます タグの内容を分割します)。それらを
の
*/
$text = str_replace (array ('',
'), '
', $text);
/* メモに表示されないように
タグを削除します */
$text = str_replace (array ('
','< /p>'), '', $text);
/* 改行を維持 */
$text = str_replace("n", "
", $text); これにより、長い行のみが改行されます。 */
if (function_exists("wordwrap")) {
$text = wordwrap($text);
}
// ユーザーメモの間隔を保持します
$text = str_replace(" ", " ", $text);
$text を返す;
}
/**
* 画像情報を取得する関数
*
* 画像情報を網羅的に取得する関数
*
* @access public
* @param string $img 画像パス
* @return array
*/
function getimageinfo($img) {
$img_info = getimagesize($img);
switch ($img_info[2]) {
case 1:
$imgtype = "GIF";
休憩;
ケース 2:
$imgtype = "JPG";
休憩;
ケース 3:
$imgtype = "PNG";
休憩;
}
$img_size = ceil(filesize($img)/1000)."k";
$new_img_info = array (
"width"=>$img_info[0],
"height"=>$img_info[1],
"type"=>$imgtype,
"サイズ"=>$ img_size
);
$new_img_info を返す;
}
/**
* 現在時刻を計算します
*
* 現在のシステム時刻をマイクロ秒単位で返します
*
* @access public
* @return real
*/
function getmicrotime() {
$tmp = explode(' ', microtime());
return (real)$tmp[1]。 substr($tmp[0], 1);
}
/**
* ファイル書き込み操作
*
* @access public
* @param bool
* @return void
*/
function wfile($file,$content,$mode='w') {
$oldmask = umask(0);
$fp = fopen($file, $mode);
if (!$fp) return false;
fwrite($fp,$content);
fclose($fp);
umask($oldmask);
true を返します。
}
/**
* テンプレートファイルをロード
*
* @access public
* @return void
*/
function tpl_load($tplfile,$path='./templates/',$empty='remove') {
global $tpl;
$パス ? '' : $path='./templates/';
require_once 'HTML/テンプレート/PHPLIB.php';
$tpl = 新しい Template_PHPLIB($path,$empty);
$tpl->setFile('main',$tplfile);
}
/**
* テンプレート解析出力
*
* @access public
* @return void
*/
function tpl_output() {
global $tpl;
$tpl->parse('output','main');
$tpl->p('output');
}
/**
* 邮件发送函数
*
* @access public private
* @param bool
* @return void
*/
function mailSender($from, $to, $title, $content) {
$from ? $from = 'sender@phpe.net' : '';
$title ? $title = 'From Exceed PHP...' : '';
$sig = "
感谢您使用我们的服务.\n\n
Exceed PHP(超越PHP)\n
$maildate\n\n
---------------------------------------------------------------------------------------
\n\n
去发现极限方法的唯一办法就是去超越它\n
超越PHP欢迎您(http://www.phpe.net)\n
";
$content .= $sig;
if (@mail($to, $title, $content, "From:$from\nReply-To:$from")) {
return true;
} else {
return false;
}
}
function br2none($str) {
return str_replace(array('
', '
'), "", $str);
}
/**
* UBB解析
*
* @param none
* @access public
* @return void
*/
function ubbParse($txt, $coverhtml=0) {
if ($coverhtml == 0) $txt = nl2br(new_htmlspecialchars($txt)); //BR和HTML转换
//只转换BR,不转换HTML
if ($coverhtml == 1) {
if (!preg_match('/<\s*(p|br)\s*>/is', $txt) && !preg_match('/
/is', $txt)) {
$txt = strip_tags($txt);
$txt = nl2br($txt);
} else {
$txt = str_replace('', '', $txt);
}
}
// pre and quote
//error_reporting(E_ALL);
$txt = preg_replace( "#\[quote\](.+?)\[/quote\]#is", "\1
", $txt );
$txt = preg_replace( "#\[code\](.+?)\[/code\]#ise", "''.br2none('').'
'", $txt );
// Colors 支持篏套
while( preg_match( "#\[color=([^\]]+)\](.+?)\[/color\]#is", $txt ) ) {
$txt = preg_replace( "#\[color=([^\]]+)\](.+?)\[/color\]#is", "\2", $txt );
}
// Align
$txt = preg_replace( "#\[center\](.+?)\[/center\]#is", "\1", $txt );
$txt = preg_replace( "#\[left\](.+?)\[/left\]#is", "\1
", $txt );
$txt = preg_replace( "#\[right\](.+?)\[/right\]#is", "\1
", $txt );
// Sub & sup
$txt = preg_replace( "#[sup](.+?)[/sup]#is", "1", $ txt );
$txt = preg_replace( "#[sub](.+?)[/sub]#is", "1", $txt );
// メールタグ
/ / [email]avenger@php.net[/email] [email=avenger@php.net]メールしてください[/email]
$txt = preg_replace( "#[email](S+?)[/email]#i" , "1", $txt );
$txt = preg_replace( "#[emails*=s*"([.w-]+@[. w-]+.[.w-]+)s*"s*](.*?)[/email]#i" , "2" , $txt );
$txt = preg_replace( "#[emails*=s*([.w-]+@[.w-]+.[w-]+)s*](.*?)[/ email]#i" , "2", $txt );
// url タグ
// [url]http://www.phpe.net [/url] [url=http://www.phpe.net]PHP を超えてください![/url]
$txt = preg_replace( "#[url](S+?)[/url]#i" , "< a href='1' target='_blank'>1", $txt );
$txt = preg_replace( "#[urls*=s*"s*(S+?)s*"s*](.*?)[/url]#i" , "2", $txt );
$txt = preg_replace( "#[urls*=s*(S+?)s*](.*?)[/url]#i" , " 2", $txt );
// 簡単なことから始めましょう
$txt = preg_replace( "#[b](.+?)[/b]#is", "1", $txt );
$txt = preg_replace( "#[i](.+?)[/i]#is", "1", $txt );
$txt = preg_replace( "#[u](.+?)[/u]#is", "1", $txt );
$txt = preg_replace( "#[s](.+?)[/s]#is", "1", $txt );
// ヘッダーテキスト
$txt = preg_replace( "#[h([1-6])](.+?)[/h[1-6]]#is", "2
// 画像
$txt = preg_replace( "#[img](.+?)[/img]#i", " $sec = time() - $date; /秒 1 日は 86400
if ($sec < 86400) {
return round($sec/3600). ' 時間 前'
} elseif ($sec < (86400 * 7)) {
リターンラウンド( $sec/86400)。「 日前」
}elseif ($sec , 国 ken — as as (日付どおり) );
以上、PHP を超えた functionincphp について内容を含めて紹介しましたが、PHP チュートリアルに興味のある友人の参考になれば幸いです。