HTML タグを削除します
コードをコピーします コードは次のとおりです:
$text =strip_tags($input, " ") ;
コードをコピー コードは次のとおりです。
function GetBetween( $content ,$start,$end){
$r =explode($start, $content);
if (isset($r[1])){
$r =explode($end) , $ r[1]);
return $r[0]>}
return '';
URL をリンクに変換します🎜 >
コードは次のとおりです: $url = "Jean-Baptiste Jung (http://www.jb51.net) "; $url = preg_replace("#http://([A-z0-9./-] )#", '', $url);
文字列を 140 文字に分割します
コードは次のとおりです次のように: function split_to_chunks($to,$text){ $total_length = (140 - strlen($to));
$text_arr =explode(" ",$ text);$i=0;
$message[0]="";
foreach ($text_arr as $word){
if ( strlen($message[$i] . $ word . ' ') <= $total_length ){
if ($text_arr[count($text_arr)-1] == $word){
$message[$i] .= $word; >} else {
$message[$i] .= $word .
}
} else {
$i; -1] == $word){
$message[$i] = $word;
} else {
$message[$i] = $word . <🎜; >}
}
return $message;
}
文字列内の URL を削除します
コードをコピー
コードは次のとおりです:
文字列を SEO に適した文字列に変換します
コードをコピーします
コードは次のとおりです:
$str = strto lower(trim($ str)); $str = preg_replace('/[^a-z0-9-]/', '-', $str); preg_replace('/- /', "- ", $str); return $str;
CSV ファイルを解析します
コードをコピーします
コードは次のとおりです。
} 文字列検索
コードをコピー
コードは次のとおりです:
$content = strto lower($content); return strpos($content,$str) ? > 文字列が特定の文字列で始まるかどうかを確認します
コードをコピー
コードは次のとおりです:
function String_Begins_With($needle, $haystack {
return (substr ($haystack, 0, strlen($needle))==$needle);
抽出文字列 からのメール アドレス コード
をコピーします。 コードは次のとおりです。
function extract_emails($str){
// この正規表現は文字列からすべてのメールを抽出します:
return isset($m[0]) : array(); } $test_string = 'これはテスト文字列です...
test1@example.org
さまざまな形式をテストします:
test2@example.org;
foobar
奇妙な形式: >test5@example.org
test6[at]example.org
test7 @example.net.org.com
test8@ example.org
test9@!foo!.org
foobar
';
print_r(extract_emails($test_string ));