editable_autosave_cell.php

来自「zapatec suite 最新版 20070204,非常棒的ajax widg」· PHP 代码 · 共 23 行

PHP
23
字号
<?php// Check argumentsif (!isset($_POST['i']) || !isset($_POST['r']) || !isset($_POST['o'])) {	exit;}$iCellId = $_POST['i'];$iRowId = $_POST['r'];$sValue = $_POST['o'];// Check phone number formatif ($iCellId == 4) {	if (preg_match('/^\(\d{3}\)[-\s\d]+$/', $sValue)) {		// ok means success, otherwise error		echo 'ok';	}} else {	// In this example we don't check other columns	echo 'ok';}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?