在PHP中,字符串处理是非常常见的操作。下面是一些基本的PHP字符串处理示例代码:
-
字符串连接
$str1 = "Hello, "; $str2 = "World!"; $result = $str1 . $str2; // 使用点(.)操作符连接字符串 echo $result; // 输出: Hello, World!
-
字符串长度
$str = "Hello, World!"; $length = strlen($str); // 使用strlen()函数获取字符串长度 echo $length; // 输出: 13
-
字符串替换
$str = "Hello, World!"; $newStr = str_replace("World", "PHP", $str); // 使用str_replace()函数替换字符串中的子串 echo $newStr; // 输出: Hello, PHP!
-
字符串截取
$str = "Hello, World!"; $substr = substr($str, 0, 5); // 使用substr()函数截取字符串,从索引0开始,长度为5 echo $substr; // 输出: Hello
-
字符串搜索
$str = "Hello, World!"; $pos = strpos($str, "World"); // 使用strpos()函数搜索字符串中第一次出现"World"的位置 echo $pos; // 输出: 7
-
字符串转换为大写/小写
$str = "Hello, World!"; $upperStr = strtoupper($str); // 使用strtoupper()函数将字符串转换为大写 $lowerStr = strtolower($str); // 使用strtolower()函数将字符串转换为小写 echo $upperStr; // 输出: HELLO, WORLD! echo $lowerStr; // 输出: hello, world!
-
字符串分割
$str = "apple,banana,orange"; $fruits = explode(",", $str); // 使用explode()函数根据逗号分割字符串 print_r($fruits); // 输出: Array ( [0] => apple [1] => banana [2] => orange )
-
去除字符串两端的空白字符
$str = " Hello, World! "; $trimmedStr = trim($str); // 使用trim()函数去除字符串两端的空白字符 echo $trimmedStr; // 输出: Hello, World!
-
字符串填充
$str = "Hello"; $paddedStr = str_pad($str, 10, "*", STR_PAD_RIGHT); // 使用str_pad()函数在字符串右侧填充*直到长度为10 echo $paddedStr; // 输出: Hello*****
-
- 通用参数说明
- url说明 https://api-gw.onebound.cn/平台/API类型/ 平台:淘宝,京东等, API类型:[item_search,item_get,item_search_shop等]
- version:API版本
- key:调用key,测试key:test_api_key
- secret:调用secret,测试secret:(不用填写)
- cache:[yes,no]默认yes,将调用缓存的数据,速度比较快
- result_type:[json,xml,serialize,var_export]返回数据格式,默认为json
- lang:[cn,en,ru] 翻译语言,默认cn简体中文
- secret:密钥
-
API:item_search 参数说明:
- q:搜索关键字
- cat:分类ID
- start_price:开始价格
- end_price:结束价格
- sort:排序[bid,bid,bid2,_bid2,_sale,_credit]
(bid:总价,bid2:商品价格,sale:销量,credit信用,加前缀为从大到小排序) - page:页数
- page_size:每页宝贝数量,默认40
- seller_info:是否获取商家信息[yes,no],默认yes
-
API:item_get 参数说明: num_iid:宝贝ID
- 通用参数说明
-
此API目前支持以下基本接口:
- item_get 获得JD商品详情
- item_search 按关键字搜索商品
- item_search_img 按图搜索京东商品(拍立淘)
- item_search_shop 获得店铺的所有商品
- item_history_price 获取商品历史价格信息
- item_recommend 获取推荐商品列表
- buyer_order_list 获取购买到的商品订单列表
- buyer_order_datail 获取购买到的商品订单详情
- upload_img 上传图片到JD
- item_review 获得JD商品评论
- cat_get 获得jd商品分类