Maison > développement back-end > tutoriel php > PHP 类的有关问题

PHP 类的有关问题

WBOY
Libérer: 2016-06-13 13:30:04
original
860 Les gens l'ont consulté

PHP 类的问题
调用源码

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
$obj_car = new class_car;
$num_carId = $obj_car->fn_carAdd($_POST);

Copier après la connexion



类源码
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
class class_car {
    function fn_carAdd($arr_post) {
        print_r($arr_post);
    }
}

Copier après la connexion


这样可以正常输出数组
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
Array
(
    [action_post] => carAdd
    [str_postChk] => 
    [str_carName] => 高尔夫
    [num_carBrand] => 7
    [num_carModel] => 615
    [str_carEmiss] => 1.4T
    [str_carTrans] => MT
)

Copier après la connexion



类源码
PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
class class_car {
    function fn_carAdd($arr_post) {
        print_r($arr_post["str_carName"]);
    }
}

Copier après la connexion


这样输出乱码,求解,文件本身编码都没问题

------解决方案--------------------
header发送编码。
加在程序开始就行了。

header('Content-Type:text/html; charset=utf-8');
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal