#!/bin/sh## Generate the tokenizer extension data file from the parser header file.# Go to project root directory.cd $(CDPATH= cd -- "$(dirname -- "0ドル")/../../" && pwd -P)infile="Zend/zend_language_parser.h"outfile="ext/tokenizer/tokenizer_data.c"if test ! -f "$infile"; thenecho "$infile is missing." >&2echo "" >&2echo "Please, generate the PHP parser files by scripts/dev/genfiles" >&2echo "or by running the ./configure build step." >&2exit 1fiecho '/*+----------------------------------------------------------------------+| Copyright (c) The PHP Group |+----------------------------------------------------------------------+| This source file is subject to version 3.01 of the PHP license, || that is bundled with this package in the file LICENSE, and is || available through the world-wide-web at the following url: || http://www.php.net/license/3_01.txt || If you did not receive a copy of the PHP license and are unable to || obtain it through the world-wide-web, please send a note to || license@php.net so we can mail you a copy immediately. |+----------------------------------------------------------------------+| Author: Johannes Schlueter <johannes@php.net> |+----------------------------------------------------------------------+*//*DO NOT EDIT THIS FILE!This file is generated using tokenizer_data_gen.sh*/#include "php.h"#include "zend.h"#include <zend_language_parser.h>' > $outfileecho 'void tokenizer_register_constants(INIT_FUNC_ARGS) {' >> $outfileawk '/^ T_(NOELSE|ERROR)/ { next }/^ T_/ { print " REGISTER_LONG_CONSTANT(\"" 1ドル "\", " 1ドル ", CONST_CS | CONST_PERSISTENT);" }' < $infile >> $outfileecho ' REGISTER_LONG_CONSTANT("T_DOUBLE_COLON", T_PAAMAYIM_NEKUDOTAYIM, CONST_CS | CONST_PERSISTENT);' >> $outfileecho '}' >> $outfileecho 'char *get_token_type_name(int token_type){switch (token_type) {' >> $outfileawk '/^ T_PAAMAYIM_NEKUDOTAYIM/ {print " case T_PAAMAYIM_NEKUDOTAYIM: return \"T_DOUBLE_COLON\";"next}/^ T_(NOELSE|ERROR)/ { next }/^ T_/ {print " case " 1ドル ": return \"" 1ドル "\";"}' < $infile >> $outfileecho '}return "UNKNOWN";}' >> $outfileecho "Wrote $outfile"
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。