PHP ord() 函数作用及实例教程
定义和用法
在ord( )函数返回的ASCII值的第一个字符的字符串。
语法
ord(string)
Parameter | Description |
---|---|
string | Required. The string to get an ASCII value from |
来看个ord实例.
<?php echo ord("h")."<br />"; echo ord("hello")."<br />"; ?> |
结果为.
104,104
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索php
, string
, 字符串
, 实例
, 函数
教程
excel函数实例教程、vlookup函数实例教程、excel if函数实例教程、python函数 实例教程、python ord函数,以便于您获取更多的相关知识。
时间: 2024-10-24 23:04:08