09/10/2018, 23:48
Làm sao bỏ đựoc dấu "" đi ?
Code của tôi dùng PHP, khi nhập dữ liệu vào thì lúc hiển thị lên nếu cứ gặp cái dấu "" là nó chuyển hết thành như thế này: "Trợ lý", "hỗ trợ", "đóng góp". Tức là nó tự thêm vào trước dấu nháy thành "". Có cách nào để loại hết những dấu này đi không nhỉ? Mong các bác hướng dẫn.
Bài liên quan
http://au.php.net/stripslashes
vậy là ok
Nhìn trang văn bản lại sáng sủa rồi.
check PHP Manual bạn sẽ thấy:
; Magic quotes
;
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off
; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off
; Use Sybase-style magic quotes (escape ' with '' instead of \').
magic_quotes_sybase = Off
If access to the server configuration is unavailable, use of .htaccess is also an option. For example:
php_flag magic_quotes_gpc Off
In the interest of writing portable code (code that works in any environment), like if setting at the server level is not possible, here's an example to disable magic_quotes_gpc at runtime. This method is inefficient so it's preferred to instead set the appropriate directives elsewhere.
Example 31.2. Disabling magic quotes at runtime
<?php
if (get_magic_quotes_gpc()) {
function stripslashes_deep($value)
{
$value = is_array($value) ?
array_map('stripslashes_deep', $value) :
stripslashes($value);
return $value;
}
$_POST = array_map('stripslashes_deep', $_POST);
$_GET = array_map('stripslashes_deep', $_GET);
$_COOKIE = array_map('stripslashes_deep', $_COOKIE);
$_REQUEST = array_map('stripslashes_deep', $_REQUEST);
}
?>