PHP 字符串 parse_str() 是內置函數。它用於將字符串解析為變量。
用法:
parse_str(string,array);
參數 | 描述 | 必需/可選 |
---|---|---|
String | 指定要解析的字符串 | required |
Array | 指定用於存儲變量的數組的名稱。 | optional |
例子1
<?php
parse_str("name=John&age;=26",$yourArray);
print_r($yourArray);
?>
輸出:
Array ( [name] => John [age] => 26 )
例子2
<?php
parse_str("name=John&age;=26");
echo "Your Name:".$name."<br>";
echo "Your Age:".$age;
?>
輸出:
Your Name:John Your Age:26
例子3
<?php
parse_str("My Website=JavaTpoint");
echo $My_Website; // JavaTpoint
?>
輸出:
JavaTpoint
示例 4
<?php
parse_str("My Language=PHP", $output);
echo $output['My_Language']; // Something*/
?>
輸出:
PHP
相關用法
- PHP string printf()用法及代碼示例
- PHP string rtrim()用法及代碼示例
- PHP string ord()用法及代碼示例
- PHP string join()用法及代碼示例
- PHP string sha1()用法及代碼示例
- PHP string setlocale()用法及代碼示例
- PHP string sha1_file()用法及代碼示例
- PHP string md5()用法及代碼示例
- PHP string ltrim()用法及代碼示例
- PHP string str_repeat()用法及代碼示例
- PHP string lcfirst()用法及代碼示例
- PHP string str_shuffle()用法及代碼示例
- PHP string similar_text()用法及代碼示例
- PHP string crypt()用法及代碼示例
- PHP string str_ireplace()用法及代碼示例
- PHP string str_split()用法及代碼示例
- PHP string strcoll()用法及代碼示例
- PHP string str_rot13()用法及代碼示例
- PHP string str_pad()用法及代碼示例
注:本文由純淨天空篩選整理自 PHP string parse_str() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。