PHP经典:提取子字符串

简介: PHP经典:提取子字符串

substr:整个字符串 从哪里开始(第一个是下标0) 最后是哪里(比如写8那8-1=7就对了)

<!DOCTYPE html>
<html lang="zh">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title></title>
</head>
<body>
  <form method="get">
    <input type="text" name="username" id="">
    <input type="submit" value="提交">
  </form>
</body>
</html>
<?php
    error_reporting(0);
      echo $username=substr($_GET['username'],0,8);
?>


相关文章
|
8月前
|
PHP
PHP 字符串
PHP 字符串
25 0
|
2月前
|
JSON JavaScript PHP
PHP把unicode编码的json字符串转中文
PHP把unicode编码的json字符串转中文
13 0