検索

phrase: max: clip:
target: order:
Results of 1 - 4 of about 4 for abcde (0.001 sec.)
指定した位置から指定した長さの 2 つの文字列について、バイナリ対応で比較する 12445
« strtr substr_count » PHP Manual String 関数 指定した位置から指定した長さの 2 つの文字列について ... substr_compare() の例 <?php echo substr_compare ( "abcde" , "bc" , 1 , 2 ); // 0 echo substr_compare ( "abc ... e" , "de" , - 2 , 2 ); // 0 echo substr_compare ( "abcde" , "bcg" , 1 , 2 ); // 0 echo substr_compare ( "ab ... "BC" , 1 , 2 , true ); // 0 echo substr_compare ( "abcde" , "bc" , 1 , 3 ); // 1 echo substr_compare ( "abc ... de" , "cd" , 1 , 2 ); // -1 echo substr_compare ( "abcde" , "abc" , 5 , 1 ); // 警告 ?> 参考 strncmp() - 最 ...
https://man.plustar.jp/php/function.substr-compare.html - [similar]
MS SQL Server および SQL Azure データベースに接続する 8229
« MS SQL Server (PDO) Oracle (PDO) » PHP Manual MS SQL Server (PDO) MS SQL Server および SQL Azu ... erName", "Password"); 以下の例は、サーバー ID 12345abcde の SQL Azure データベースに接続する方法を示します。 ... に PDO で接続するときは、ユーザー名が UserName@12345abcde (UserName@ServerId) となることに注意しましょう。 $ ... c = new PDO("sqlsrv:Server=12345abcde.database.windows.net;Database=testdb", "UserName@1 ... 2345abcde", "Password"); 関連キーワード: PDO , 接続 , データ ...
https://man.plustar.jp/php/ref.pdo-sqlsrv.connection.html - [similar]
配列と同様の形式で、複数の変数への代入を行う 8136
« ksort natcasesort » PHP Manual 配列 関数 配列と同様の形式で、複数の変数への代入を行う list (PH ... // list() は文字列では動作しません list( $bar ) = "abcde" ; var_dump ( $bar ); // NULL ?> 例2 list() の使用 ...
https://man.plustar.jp/php/function.list.html - [similar]
文字列の一部分を返す 8136
« substr_replace trim » PHP Manual String 関数 文字列の一部分を返す substr (PHP 4, PHP 5, PHP 7, ... t 番目から始まる文字列となります。 例えば、文字列' abcdef 'において位置 0 にある文字は、' a 'であり、 位置 ... す。 例1 負の offset の使用 <?php $rest = substr ( "abcdef" , - 1 ); // "f" を返す $rest = substr ( "abcdef" ... , - 2 ); // "ef" を返す $rest = substr ( "abcdef" , - 3 , 1 ); // "d" を返す ?> length length が指 ... す。 例2 負の length の使用 <?php $rest = substr ( "abcdef" , 0 , - 1 ); // "abcde" を返す $rest = substr ( ...
https://man.plustar.jp/php/function.substr.html - [similar]
PREV 1 NEXT