ホームページ >バックエンド開発 >PHPチュートリアル >php $_G は 2 つのデータテーブルのデータをどのように異なるのでしょうか?

php $_G は 2 つのデータテーブルのデータをどのように異なるのでしょうか?

WBOY
WBOYオリジナル
2016-09-30 09:37:341511ブラウズ

これは元の呼び出しです:
$_G['db']->from('dbpre_subject');
$_G['db']->select('*');
$_G['db' ]->where('city_id', array(0,$_CITY['aid']));
$_G['db']->where_concat_like('name,subname', "%{$q}% ");
$_G['db']->where('ステータス', 1);

次に、これに基づいて構築し、dbpre_subject_product_new というデータ テーブルの 2 つのフィールド c_product_price と c_product_content を変更したいと思います。よろしくお願いします。

//ソースコードを添付します

!define('IN_MUDDER') && exit('アクセス拒否');

$city_id = _get('city_id', null, MF_INT_KEY);

if($city_id>0) {
リーリー

}

$q = _input('keyword', '', MF_TEXT);

if(($_GET['Pathinfo'] || $_GET['Rewrite']) && $q && $_G['charset'] != 'utf-8' && $_G'cfg') {
リーリー

}

$q = str_replace(array("rn","r","n") ,'', _T($q));

$_G['db']->from('dbpre_subject');

$_G['db']->select('*');
$_G['db']->where(' city_id', array(0,$_CITY['aid']));
$_G['db']->where_concat_like('name,subname', "%{$q}%");
$_G[ 'db']->where('ステータス', 1);

$multipage = '';

if($total = $_G['db']->count()) {
リーリー

}

//テンプレートを表示

if($_G['in_ajax']) {
リーリー

}

$title = '商品の検索:'.$q;

include mobile_template('item_list');

返信内容:

これは元の呼び出しです:

$_G['db']->from('dbpre_subject');
$_G['db']->select('*');
$_G['db' ]->where('city_id', array(0,$_CITY['aid']));
$_G['db']->where_concat_like('name,subname', "%{$q}% ");
$_G['db']->where('ステータス', 1);

次に、これに基づいて構築し、dbpre_subject_product_new というデータ テーブルの 2 つのフィールド c_product_price と c_product_content を変更したいと思います。よろしくお願いします。

//ソースコードを添付します

!define('IN_MUDDER') && exit('アクセス拒否');

$city_id = _get('city_id', null, MF_INT_KEY);

if($city_id>0) {

リーリー
}

$q = _input('keyword', '', MF_TEXT);

if(($_GET['Pathinfo'] || $_GET['Rewrite']) && $q && $_G['charset'] != 'utf-8' && $_G'cfg') {

リーリー
}

$q = str_replace(array("rn","r","n") ,'', _T($q));


$_G['db']->from('dbpre_subject');

$_G['db']->select('*');

$_G['db']->where(' city_id', array(0,$_CITY['aid']));
$_G['db']->where_concat_like('name,subname', "%{$q}%");
$_G[ 'db']->where('ステータス', 1);

$multipage = '';

if($total = $_G['db']->count()) {

リーリー
}

//テンプレートを表示

if($_G['in_ajax']) {

リーリー
}

$title = '製品の検索:'.$q;

include mobile_template('item_list');


どのようなフレームワークがありますか?フレームワークが異なれば構文も異なります

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。