Posted on April 2nd, 2008 by rolode
ignore_user_abort
连接中断后程序是否执行。
语法: int ignore_user_abort(int [setting]);
返回值: 整数
函数种类: PHP 系统功能
内容说明
本函数配置或取得使用端连接中断后,PHP 程序是否仍继续执行。默认值为中断连接后就停止执行。在 PHP 配置文件中 (php3.ini/php.ini) 的 ignore_user_abort 选项就是配置处。本功能在 PHP 3.0.7 版之后才开始提供。
Filed under: PHP 技术 学习 教程 | No Comments »
Posted on April 2nd, 2008 by rolode
ifxus_write_slob
将字符串写入 slob 类中。
语法: int ifxus_write_slob(long bid, string content);
返回值: 整数
函数种类: 数据库功能
内容说明
本函数将指定字符串写入 slob 类之中。参数 bid 为 slob 类代码。参数 content 为待写入字符串。执行成功则返回写入字符数,失败返回 false 值。
Filed under: PHP 技术 学习 教程 | No Comments »
Posted on April 2nd, 2008 by rolode
ifxus_tell_slob
返回目前文件或找寻位置。
语法: int ifxus_tell_slob(long bid);
返回值: 整数
函数种类: 数据库功能
内容说明
本函数返回目前文件或者找寻文件的位置。参数 bid 为 slob 类代码。执行成功则返回代码值,失败返回 false 值。
Filed under: PHP 技术 学习 教程 | No Comments »
Posted on April 2nd, 2008 by rolode
ifxus_seek_slob
配置目前文件或找寻位置。
语法: int ifxus_seek_blob(long bid, int mode, long offset);
返回值: 整数
函数种类: 数据库功能
内容说明
本函数用来配置目前文件或找寻文件的位置。参数 bid 为 slob 类代码。参数 mode 的值如下:0 表 LO_SEEK_SET、1 表 LO_SEEK_CUR、2 表 LO_SEEK_END。参数 offset 为位组偏移值。执行成功则返回代码值,失败返回 false 值。
Filed under: PHP 技术 学习 教程 | No Comments »
Posted on April 2nd, 2008 by rolode
>
ifxus_read_slob
读取指定数目的 slob 类。
语法: string ifxus_read_slob(long bid, long nbytes);
返回值: 字符串
函数种类: 数据库功能
内容说明
本函数用来读取指定位数的 slob 类。参数 bid 为 slob 类代码。参数 nbytes 为位组数目。执行成功则返回 slob 部份字符串,失败返回 false 值。
Filed under: PHP 技术 学习 教程 | No Comments »