ホームページ >バックエンド開発 >PHPチュートリアル >jqGrid エクスポート Excel テーブル コード (php+jqgrid の例)_PHP チュートリアル
jqgrid 导出excel表格代码(php教程+jqgrid实例)
require_once '../../../tabs.php';
?>
jqgrid php demo
php代码
require_once '../../../jq-config.php';
// jqgrid クラスをインクルードします
require_once abspath."php/jqgrid.php";
// ドライバークラスをインクルードします
require_once abspath."php/jqgridpdo.php";
// サーバーへの接続
$conn = new pdo(db_dsn,db_user,db_password);
// utf-8 を使用することをデータベースに伝えます
$conn->query("set names utf8");// jqgrid インスタンスを作成します
$grid = new jqgridrender($conn);
// SQL クエリを作成します
$grid->selectcommand = 'select orderid、orderdate、customerid、freight、shipname from longorders';
// 出力形式を json に設定します
$grid->datatype = 'json';
// グリッドにモデルを作成させます
$grid->setcolmodel();
// データの取得元の URL を設定します
$grid->seturl('grid.php');
$grid->optimizesearch = true;
// いくつかのグリッド オプションを設定します
$grid->setgridoptions(array("rownum"=>100,"sortname"=>"orderid","height"=>150));
// フィールドのプロパティを変更します
$grid->setcolproperty("orderdate", array(
"formatter"=>"date",
"formatoptions"=>array("srcformat"= >"y-m-d h:i:s","newformat"=>"m/d/y"),
"search"=>false
)
);
// ツールバーの検索を有効にする
$grid->toolbarfilter = true;
$grid->setfilteroptions(array("stringresult"=>true));
// お楽しみください
$grid->rendergrid('#grid','#pager',true, null, null, true,true);
$conn = null;
?>