当前位置: 首页>>代码示例>>PHP>>正文


PHP Fatal_Error函数代码示例

本文整理汇总了PHP中Fatal_Error函数的典型用法代码示例。如果您正苦于以下问题:PHP Fatal_Error函数的具体用法?PHP Fatal_Error怎么用?PHP Fatal_Error使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了Fatal_Error函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: fill

function fill($prefix, $listid)
{
    global $server_name, $tables, $table_prefix;
    # check for not too many
    $domain = getConfig('domain');
    $res = Sql_query("select count(*) from {$tables['user']}");
    $row = Sql_fetch_row($res);
    if ($row[0] > 50000) {
        error('Hmm, I think 50 thousand users is quite enough for a test<br/>This machine does need to do other things you know.');
        print '<script language="Javascript" type="text/javascript"> document.forms[0].output.value="Done. Now there are ' . $row[0] . ' users in the database";</script>' . "\n";
        return 0;
    }
    # fill the database with "users" who have any combination of attribute values
    $attributes = array();
    $res = Sql_query("select * from {$tables['attribute']} where type = \"select\" or type = \"checkbox\" or type=\"radio\"");
    $num_attributes = Sql_Affected_rows();
    $total_attr = 0;
    $total_val = 0;
    while ($row = Sql_fetch_array($res)) {
        array_push($attributes, $row['id']);
        ++$total_attr;
        $values[$row['id']] = array();
        $res2 = Sql_query("select * from {$table_prefix}" . 'listattr_' . $row['tablename']);
        while ($row2 = Sql_fetch_array($res2)) {
            array_push($values[$row['id']], $row2['id']);
            ++$total_val;
        }
    }
    $total = $total_attr * $total_val;
    if (!$total) {
        Fatal_Error('Can only do stress test when some attributes exist');
        return 0;
    }
    for ($i = 0; $i < $total; ++$i) {
        $data = array();
        reset($attributes);
        while (list($key, $val) = each($attributes)) {
            $data[$val] = current($values[$val]);
            if (!$data[$val]) {
                reset($values[$val]);
                $data[$val] = current($values[$val]);
            }
            next($values[$val]);
        }
        $query = sprintf('insert into %s (email,entered,confirmed) values("testuser%s",now(),1)', $tables['user'], $prefix . '-' . $i . '@' . $domain);
        $result = Sql_query($query, 0);
        $userid = Sql_insert_id();
        if ($userid) {
            $result = Sql_query("replace into {$tables['listuser']} (userid,listid,entered) values({$userid},{$listid},now())");
            reset($data);
            while (list($key, $val) = each($data)) {
                if ($key && $val) {
                    Sql_query("replace into {$tables['user_attribute']} (attributeid,userid,value) values(" . $key . ",{$userid}," . $val . ')');
                }
            }
        }
    }
    return 1;
}
开发者ID:gillima,项目名称:phplist3,代码行数:59,代码来源:stresstest.php

示例2: Debug

function Debug($variable, $description = 'Value', $nestingLevel = 0)
{
    global $config;
    # if (!$config["debug"])
    #		$er = error_reporting(0);
    if (ini_get("safe_mode")) {
        return;
    }
    if (!$config["debug"]) {
        return;
    }
    if ($config["verbose"]) {
        smartDebug($variable, $description, $nestingLevel);
    } elseif ($config["debug_log"]) {
        $fp = @fopen($config["debug_log"], "a");
        $line = "[" . date("d M Y, H:i:s") . "] " . getenv("REQUEST_URI") . '(' . $config["stats"]["number_of_queries"] . ") {$msg} \n";
        @fwrite($fp, $line);
        @fclose($fp);
        #  $fp = fopen($config["sql_log"],"a");
        #  fwrite($fp,"$line");
        #  fclose($fp);
    } else {
        Fatal_Error("Debugging not configured properly");
    }
    #  error_reporting($er);
}
开发者ID:alancohen,项目名称:alancohenexperience-com,代码行数:26,代码来源:errorlib.php

示例3: sprintf

            return;
        }
        break;
    case "none":
    default:
        $subselect = " and " . $tables["list"] . ".id = 0";
        break;
}
if (isset($_GET["unblacklist"])) {
    $unblacklist = sprintf('%d', $_GET["unblacklist"]);
    unBlackList($unblacklist);
    Redirect("userhistory&id=" . $unblacklist);
}
$result = Sql_query("SELECT * FROM {$tables["user"]} where id = {$id}");
if (!Sql_Affected_Rows()) {
    Fatal_Error($GLOBALS['I18N']->get('no such User'));
    return;
}
$user = sql_fetch_array($result);
print '<h3>' . $GLOBALS['I18N']->get('user') . ' ' . PageLink2("user&id=" . $user["id"], $user["email"]) . '</h3>';
print '<div class="actions">';
//printf('<a href="%s" class="button">%s</a>',getConfig("preferencesurl").
//'&amp;uid='.$user["uniqid"],$GLOBALS['I18N']->get('update page'));
//printf('<a href="%s" class="button">%s</a>',getConfig("unsubscribeurl").'&amp;uid='.$user["uniqid"],$GLOBALS['I18N']->get('unsubscribe page'));
print PageLinkButton("user&amp;id={$id}", $GLOBALS['I18N']->get('Details'));
if ($access != "view") {
    printf("<a class=\"delete button\" href=\"javascript:deleteRec('%s');\">" . $GLOBALS['I18N']->get('delete') . "</a>", PageURL2("user", "", "delete={$id}"));
}
print '</div>';
$bouncels = new WebblerListing($GLOBALS['I18N']->get('Bounces'));
$bouncelist = "";
开发者ID:juvenal,项目名称:PHPlist,代码行数:31,代码来源:userhistory.php

示例4: Sql_Fetch_Row_query

                $numlists = Sql_Fetch_Row_query("select count(*) from {$GLOBALS['tables']['list']} {$subselect}");
                if (!($numlists[0] < MAXLIST)) {
                    Error($GLOBALS['I18N']->get('You cannot create a new list because you have reached maximum number of lists.'));
                    return;
                }
            }
            break;
        case "all":
            $subselect = "";
            $subselect_and = "";
            break;
        case "none":
        default:
            $subselect_and = " and owner = -1";
            if ($id) {
                Fatal_Error($GLOBALS['I18N']->get('You do not have enough privileges to view this page'));
                return;
            }
            $subselect = " where id = 0";
            break;
    }
}
if ($id) {
    echo "<br />" . PageLinkButton("members", s('Members of this list'), "id={$id}");
}
if (!empty($_POST["addnewlist"]) && !empty($_POST["listname"])) {
    if ($GLOBALS["require_login"] && !isSuperUser()) {
        $owner = $_SESSION["logindetails"]["id"];
    }
    if (!isset($_POST["active"])) {
        $_POST["active"] = listUsedInSubscribePage($id);
开发者ID:narareddy,项目名称:phplist3,代码行数:31,代码来源:editlist.php

示例5: elseif

if (isset($GLOBALS["require_login"]) && $GLOBALS["require_login"]) {
    if ($GLOBALS["admin_auth_module"] && is_file("auth/" . $GLOBALS["admin_auth_module"])) {
        require_once "auth/" . $GLOBALS["admin_auth_module"];
    } elseif ($GLOBALS["admin_auth_module"] && is_file($GLOBALS["admin_auth_module"])) {
        require_once $GLOBALS["admin_auth_module"];
    } else {
        if ($GLOBALS["admin_auth_module"]) {
            logEvent("Warning: unable to use " . $GLOBALS["admin_auth_module"] . " for admin authentication, reverting back to phplist authentication");
            $GLOBALS["admin_auth_module"] = 'phplist_auth.inc';
        }
        require_once 'auth/phplist_auth.inc';
    }
    if (class_exists('admin_auth')) {
        $GLOBALS["admin_auth"] = new admin_auth();
    } else {
        print Fatal_Error($GLOBALS['I18N']->get('Admin Authentication initialisation failure'));
        return;
    }
    if ((!isset($_SESSION["adminloggedin"]) || !$_SESSION["adminloggedin"]) && isset($_REQUEST["login"]) && isset($_REQUEST["password"]) && !empty($_REQUEST["password"])) {
        $loginresult = $GLOBALS["admin_auth"]->validateLogin($_REQUEST["login"], $_REQUEST["password"]);
        if (!$loginresult[0]) {
            $_SESSION["adminloggedin"] = "";
            $_SESSION["logindetails"] = "";
            $page = "login";
            logEvent(sprintf($GLOBALS['I18N']->get('invalid login from %s, tried logging in as %s'), $_SERVER['REMOTE_ADDR'], $_REQUEST["login"]));
            $msg = $loginresult[1];
        } else {
            $_SESSION["adminloggedin"] = $_SERVER["REMOTE_ADDR"];
            $_SESSION["logindetails"] = array("adminname" => $_REQUEST["login"], "id" => $loginresult[0], "superuser" => $admin_auth->isSuperUser($loginresult[0]), "passhash" => sha1($_REQUEST["password"]));
            ##16692 - make sure admin permissions apply at first login
            $GLOBALS["admin_auth"]->validateAccount($_SESSION["logindetails"]["id"]);
开发者ID:bcantwell,项目名称:website,代码行数:31,代码来源:index.php

示例6: Sql_Fetch_Row_query

  } else {
    $req = Sql_Fetch_Row_query("select * from {$tables["user"]} where email = \"".$_REQUEST["email"]."\"");
    $userid = $req[0];
  }
  if (!$userid)
    Fatal_Error("Error, no such user");
  # update the existing record, check whether the email has changed
  $req = Sql_Query("select * from {$tables["user"]} where id = $userid");
  $data = Sql_fetch_array($req);
  # check whether they are changing to an email that already exists, should not be possible
	$req = Sql_Query("select uniqid from {$tables["user"]} where email = \"$email\"");
  if (Sql_Affected_Rows()) {
  	$row = Sql_Fetch_Row($req);
    if ($row[0] != $_GET["uid"]) {
	  	Fatal_Error("Cannot change to that email address.
      <br/>This email already exists.
      <br/>Please use the preferences URL for this email to make updates.
      <br/>Click <a href=\"".getConfig("preferencesurl")."&email=$email\">here</a> to request your personal location");
	    exit;
    }
  }

  if (ASKFORPASSWORD && $_POST["password"]) {
  	if (ENCRYPTPASSWORD) {
    	$newpassword = sprintf('%s',md5($_POST["password"]));
   	} else {
    	$newpassword = sprintf('%s',$_POST["password"]);
    }
   	# see whether is has changed
    $curpwd = Sql_Fetch_Row_Query("select password from {$tables["user"]} where id = $userid");
    if ($_POST["password"] != $curpwd[0]) {
    	$storepassword = 'password = "'.$newpassword.'",';
开发者ID:radicaldesigns,项目名称:amp,代码行数:32,代码来源:subscribelib2.php

示例7: closedir

    $attributes[$entry] = $file;
  }
}
closedir($dir);

if (is_array($selected)) {
  while(list($key,$val) = each($selected)) {
    $entry = readentry("data/$val");
    list($name,$desc) = explode(":",$entry);
    print "<br/><br/>Loading $desc<br>\n";
    $lc_name = str_replace(" ","", strtolower(str_replace(".txt","",$val)));
    $lc_name = ereg_replace("[^[:alnum:]]","",$lc_name);

    if ($lc_name == "") Fatal_Error("Name cannot be empty: $lc_name");
    Sql_Query("select * from {$tables['attribute']} where tablename = \"$lc_name\"");
    if (Sql_Affected_Rows()) Fatal_Error("Name is not unique enough");

    $query = sprintf('insert into %s (name,type,required,tablename) values("%s","%s",%d,"%s")',
    $tables["attribute"],addslashes($name),"select",1,$lc_name);
    Sql_Query($query);
    $insertid = Sql_Insert_id();

    $query = "create table $table_prefix"."listattr_$lc_name (id integer not null primary key auto_increment, name varchar(255) unique,listorder integer default 0)";
    Sql_Query($query);
    $fp = fopen("data/$val","r");
    $header = "";
    while (!feof ($fp)) {
      $buffer = fgets($fp, 4096);
      if (!ereg("#",$buffer)) {
        if (!$header)
          $header = $buffer;
开发者ID:radicaldesigns,项目名称:amp,代码行数:31,代码来源:defaults.php

示例8: ob_end_flush

ob_end_flush();
if (isset($_POST["action"]) && $_POST["action"] == $GLOBALS['I18N']->get('SaveChanges')) {
    if (isset($_POST["name"])) {
        print '<script language="Javascript" type="text/javascript"> document.write(progressmeter); start();</script>';
    }
    flush();
    while (list($id, $val) = each($_POST["name"])) {
        if (!$id && isset($_POST["name"][0]) && $_POST["name"][0] != "") {
            # it is a new one
            $lc_name = substr(preg_replace("/\\W/", "", strtolower($_POST["name"][0])), 0, 10);
            if ($lc_name == "") {
                Fatal_Error($GLOBALS['I18N']->get('NameNotEmpty') . " {$lc_name}");
            }
            Sql_Query("select * from {$tables['adminattribute']} where tablename = \"{$lc_name}\"");
            if (Sql_Num_Rows()) {
                Fatal_Error($GLOBALS['I18N']->get('NameNotUnique'));
            }
            $query = sprintf('insert into %s
        (name,type,listorder,default_value,required,tablename)
        values("%s","%s",%d,"%s",%d,"%s")', $tables["adminattribute"], addslashes($_POST["name"][0]), $_POST["type"][0], $_POST["listorder"][0], addslashes($_POST["default"][0]), $_POST["required"][0], $lc_name);
            Sql_Query($query);
            $insertid = Sql_Insert_id();
            # text boxes and hidden fields do not have their own table
            if ($_POST["type"][$id] != "textline" && $_POST["type"]["id"] != "hidden") {
                $query = "create table {$table_prefix}" . "adminattr_{$lc_name}\r\n          (id integer not null primary key auto_increment,\r\n          name varchar(255) unique,listorder integer default 0)";
                Sql_Query($query);
            } else {
                # and they cannot currently be required, changed 29/08/01,
                # insert javascript to require them, except for hidden ones :-)
                if ($_POST["type"]["id"] == "hidden") {
                    Sql_Query("update {$tables['attribute']} set required = 0 where id = {$insertid}");
开发者ID:radicaldesigns,项目名称:amp,代码行数:31,代码来源:adminattributes.php

示例9: menuLink

    if ($adminlevel == "superuser") {
        $html .= menuLink("admins", "administrators");
        $html .= menuLink("groups", "groups");
        $html .= menuLink("users", "users");
        $html .= menuLink("userattributes", "user attributes");
        $req = Sql_Query('select * from attribute where type = "select" or type = "radio" or type = "checkboxgroup"');
        while ($row = Sql_Fetch_Array($req)) {
            $html .= menuLink("editattributes&id=" . $row["id"], "&gt;&nbsp;" . $row["name"]);
        }
        $html .= menuLink("branches", "branch fields", "option=branchfields");
        $html .= menuLink("templates", "templates");
    }
    return $html;
}
if (!$id) {
    Fatal_Error($GLOBALS['I18N']->get('NoAttr') . " {$id}");
    return;
}
if (!isset($tables["attribute"])) {
    $tables["attribute"] = "attribute";
    $tables["user_attribute"] = "user_attribute";
}
if (!isset($table_prefix)) {
    $table_prefix = 'phplist_';
}
$res = Sql_Query("select * from {$tables['attribute']} where id = {$id}");
$data = Sql_Fetch_array($res);
$table = $table_prefix . "listattr_" . $data["tablename"];
switch ($data['type']) {
    case 'checkboxgroup':
    case 'select':
开发者ID:alancohen,项目名称:alancohenexperience-com,代码行数:31,代码来源:editattributes.php

示例10: Sql_query

    if ($require_login && !isSuperUser()) {
        $lists = Sql_query("SELECT listid FROM {$tables["listuser"]},{$tables["list"]} where userid = " . $delete . " and {$tables['listuser']}.listid = {$tables['list']}.id {$subselect} ");
        while ($lst = Sql_fetch_array($lists)) {
            Sql_query("delete from {$tables["listuser"]} where userid = {$delete} and listid = {$lst['0']}");
        }
    } else {
        deleteUser($delete);
    }
    print '..' . $GLOBALS['I18N']->get('Done') . "<br /><hr><br />\n";
}
$membership = "";
$subscribed = array();
if ($id) {
    $result = Sql_query("SELECT * FROM {$tables["user"]} where id = {$id}");
    if (!Sql_Affected_Rows()) {
        Fatal_Error($GLOBALS['I18N']->get('No such User') . ' ' . $id);
        return;
    }
    $user = sql_fetch_array($result);
    $lists = Sql_query("SELECT listid,name FROM {$tables["listuser"]},{$tables["list"]} where userid = " . $user["id"] . " and {$tables['listuser']}.listid = {$tables['list']}.id {$subselect} ");
    while ($lst = Sql_fetch_array($lists)) {
        $membership .= "<li>" . PageLink2("editlist", $lst["name"], "id=" . $lst["listid"]);
        array_push($subscribed, $lst["listid"]);
    }
    if (!$membership) {
        $membership = $GLOBALS['I18N']->get('No Lists');
    }
    if ($access != "view") {
        printf("<br /><hr/>%s<li><a href=\"javascript:deleteRec('%s');\">delete</a> %s\n", $delete_message, PageURL2("user", "", "delete={$id}&{$returnurl}"), $user["email"]);
    }
    printf('&nbsp;&nbsp;<a href="%s">%s</a>', getConfig("preferencesurl") . '&uid=' . $user["uniqid"], $GLOBALS['I18N']->get('update page'));
开发者ID:alancohen,项目名称:alancohenexperience-com,代码行数:31,代码来源:user.php

示例11: elseif

         $emailindex = $i;
     } elseif (strtolower($attribute) == "password") {
         $passwordindex = $i;
     } elseif (strtolower($attribute) == "loginname") {
         $loginnameindex = $i;
     } else {
         $req = Sql_Query("select id from " . $tables["adminattribute"] . " where name = \"{$attribute}\"");
         if (!Sql_Affected_Rows()) {
             # it's a new one # oops, bad coding cut-n-paste
             $lc_name = substr(str_replace(" ", "", strtolower($attribute)), 0, 10);
             if ($lc_name == "") {
                 Fatal_Error($GLOBALS['I18N']->get("Name cannot be empty") . ": " . $lc_name);
             }
             Sql_Query("select * from " . $tables["adminattribute"] . " where tablename = \"{$lc_name}\"");
             if (Sql_Affected_Rows()) {
                 Fatal_Error($GLOBALS['I18N']->get("Name is not unique enough") . ": " . $attribute);
             }
             if (!$test_import) {
                 Sql_Query(sprintf('insert into %s (name,type,listorder,default_value,required,tablename) values("%s","%s",0,"",0,"%s")', $tables["adminattribute"], addslashes($attribute), "textline", $lc_name));
                 $attid = Sql_Insert_id();
             } else {
                 $attid = 0;
             }
         } else {
             $d = Sql_Fetch_Row($req);
             $attid = $d[0];
         }
         $import_attribute[$attribute] = array("index" => $i, "record" => $attid);
     }
 }
 if (!isset($emailindex)) {
开发者ID:alancohen,项目名称:alancohenexperience-com,代码行数:31,代码来源:importadmin.php

示例12: dbg

function dbg($variable, $description = 'Value', $nestingLevel = 0)
{
    //  smartDebug($variable, $description, $nestingLevel); //TODO Fix before release!
    //  return;
    global $config;
    # if (!$config["debug"])
    #   $er = error_reporting(0);
    if (ini_get("safe_mode") && ini_get("safe_mode") != "Off") {
        return;
    }
    if (!$config["debug"]) {
        return;
    }
    if ($config["verbose"]) {
        print "\n" . '<font class="debug">DBG: ' . $msg . '</font><br>' . "\n";
    } elseif ($config["debug_log"]) {
        $fp = @fopen($config["debug_log"], "a");
        $line = "[" . date("d M Y, H:i:s") . "] " . getenv("REQUEST_URI") . '(' . $config["stats"]["number_of_queries"] . ") {$msg} \n";
        @fwrite($fp, $line);
        @fclose($fp);
        #  $fp = fopen($config["sql_log"],"a");
        #  fwrite($fp,"$line");
        #  fclose($fp);
    } else {
        Fatal_Error("Debugging not configured properly");
    }
    #  error_reporting($er);
}
开发者ID:kvervo,项目名称:phplist-aiesec,代码行数:28,代码来源:connect.php

示例13: dirname

<?php

require_once dirname(__FILE__) . '/accesscheck.php';
$id = !empty($_GET['id']) ? sprintf('%d', $_GET['id']) : 0;
ob_end_flush();
if (!$id) {
    Fatal_Error($GLOBALS['I18N']->get('No such attribute:') . " {$id}");
    return;
}
if (!isset($tables["attribute"])) {
    $tables["attribute"] = "attribute";
    $tables["user_attribute"] = "user_attribute";
}
if (!isset($table_prefix)) {
    $table_prefix = 'phplist_';
}
$res = Sql_Query("select * from {$tables['attribute']} where id = {$id}");
$data = Sql_Fetch_array($res);
$table = $table_prefix . "listattr_" . $data["tablename"];
switch ($data['type']) {
    case 'checkboxgroup':
    case 'select':
    case 'radio':
        break;
    default:
        print $GLOBALS['I18N']->get('This datatype does not have editable values');
        return;
}
?>
<div class="panel"><div class="header"></div><!-- ENDOF .header -->
<div class="content">
开发者ID:narareddy,项目名称:phplist3,代码行数:31,代码来源:editattributes.php

示例14: while

        while ($row = Sql_Fetch_Row($req)) {
          Sql_Query(sprintf('insert ignore into %s (attributeid,userid) values(0,%d)',
            $tables["user_attribute"],$row[0]));
        }
      } elseif ($_POST["name"][$id] != "") {
        # it is a change
        # get the original type

        $req = Sql_Fetch_Row_Query("select type,tablename from {$tables['attribute']} where id = $id");
        switch($req[0]) {
          case "textline":case "hidden":
            if ($type[$id] == "hidden" || $type[$id] == "textline") break;
            # we are turning a hidden or textline field into a radio,checkbox,checkboxgroup or select
            if ($type[$id] != "checkbox") {
              $lc_name = substr(preg_replace("/\W/","", strtolower($req[1])),0,10);
              if ($lc_name == "") Fatal_Error("Name cannot be empty: $lc_name");
              Sql_Query("create table $table_prefix"."listattr_$lc_name (id integer not null primary key auto_increment, name varchar(255) unique,listorder integer default 0)");
              $attreq = Sql_Query("select distinct value from {$tables['user_attribute']} where attributeid = $id");
              while ($row = Sql_Fetch_Row($attreq)) {
                $attindexreq = Sql_Query("select id from $table_prefix"."listattr_$lc_name where name = \"$row[0]\"");
                if (!Sql_Affected_Rows()) {
                  Sql_Query("insert into $table_prefix"."listattr_$lc_name (name) values(\"$row[0]\")");
                  $attid = Sql_Insert_Id();
                } else {
                  $attindex = Sql_Fetch_Row($attindexreq);
                  $attid = $attindex[0];
                }
                Sql_Query("update {$tables['user_attribute']} set value = $attid where attributeid = $id and value = \"$row[0]\"");
              }
            } else {
            # in case of checkbox we just need to set the value to "on"
开发者ID:radicaldesigns,项目名称:amp,代码行数:31,代码来源:attributes.php

示例15: closedir

    }
}
closedir($dir);
if (is_array($selected)) {
    while (list($key, $val) = each($selected)) {
        $entry = readentry("data/{$val}");
        list($name, $desc) = explode(":", $entry);
        print "<br/><br/>" . $GLOBALS['I18N']->get('loading') . " {$desc}<br>\n";
        $lc_name = str_replace(" ", "", strtolower(str_replace(".txt", "", $val)));
        $lc_name = ereg_replace("[^[:alnum:]]", "", $lc_name);
        if ($lc_name == "") {
            Fatal_Error($GLOBALS['I18N']->get('name_empty') . " {$lc_name}");
        }
        Sql_Query("select * from {$tables['attribute']} where tablename = \"{$lc_name}\"");
        if (Sql_Affected_Rows()) {
            Fatal_Error($GLOBALS['I18N']->get('name_not_unique'));
        }
        $query = sprintf('insert into %s (name,type,required,tablename) values("%s","%s",%d,"%s")', $tables["attribute"], addslashes($name), "select", 1, $lc_name);
        Sql_Query($query);
        $insertid = Sql_Insert_id();
        $query = "create table {$table_prefix}" . "listattr_{$lc_name} (id integer not null primary key auto_increment, name varchar(255) unique,listorder integer default 0)";
        Sql_Query($query);
        $fp = fopen("data/{$val}", "r");
        $header = "";
        while (!feof($fp)) {
            $buffer = fgets($fp, 4096);
            if (!ereg("#", $buffer)) {
                if (!$header) {
                    $header = $buffer;
                } else {
                    if (trim($buffer) != "") {
开发者ID:radicaldesigns,项目名称:amp,代码行数:31,代码来源:defaults.php


注:本文中的Fatal_Error函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。