前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
社区首页 >专栏 >php案例 计算字符串单词数量

php案例 计算字符串单词数量

作者头像
贵哥的编程之路
发布2022-09-23 21:04:17
发布2022-09-23 21:04:17
37700
代码可运行
举报
运行总次数:0
代码可运行

作者:陈业贵 华为云享专家 51cto(专家博主 明日之星 TOP红人) 阿里云专家博主

文章目录


什么是单词?

举个例子: aaa aaa aaa 这就是三个单词。

cyg.php

代码语言:javascript
代码运行次数:0
运行
复制
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> 计算字符串单词数量 </title>
  <meta name="Generator" content="EditPlus">
  <meta name="Author" content="author">
  <meta name="Keywords" content="dz5362">
  <meta name="Description" content="no-description">
  <meta http-equiv="Content-type" content="text/html;charset=GB2312">
<link rel='stylesheet' type='text/css' href='style.css' />
 </head>
 <body>
	<div id="header">计算字符串单词数量</div>
	<div id="content">
		<center>计算字符串单词数量</center>
		<center>
		<form method="post" action="cyg.php">
			<input type='text' value='Hello PHP!' name='word'><br>
			<b>注意:输入的字符必须为大小写字母</b><br>
			<input type="submit" value="提交" name='sel' id="input">
		</form>
		</center>
	<?php
		if(!empty($_POST['word'])){//获取数据如果不为空执行if
			$str = $_POST['word'];//获取输入的所有的字符串
			$num = str_word_count($str);//计算单词数量
			echo "<script>alert('单词的数量为:".$num."')</script>";//输出单词数量
		}
	?>
	</div>

 </body>
</html>
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2022-09-22,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
  • 什么是单词?
  • cyg.php
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档