文字

ifx_create_char

(PHP 4, PHP <=5.2.0)

ifx_create_charCreates an char object

说明

int ifx_create_char ( string $param )

Creates an char object.

参数

param

The char content.

返回值

Returns the new char object id, or FALSE on errors.

参见

  • ifx_free_char() - Deletes the char object

用户评论:

[#1] evandrosimenes at gmail dot com [2011-04-11 08:18:56]

Example of ifx_create_char use:
i'd a problem with textarea content, the informix server was returning the -282 error code: Found a quote for which there is no matching quote...

This was the solution for me...i hope it can help someone else having this problem:

<?php
$textarea 
$_POST[textarea];
$char ifx_create_char($textarea);
$txt[] = $char;
$query 'INSERT INTO <table> (id, title, status, content) VALUES (0,"'.$title.'","'.$status.'",?)';
if (!(
$execute ifx_query($query,$conn_id,$txt))){
   echo 
"Error on insert...".ifx_error();
} else {
   echo 
"<script>alert('Success');</script>";    
}
?>

上一篇: 下一篇: