php_sqlite

准备用php+sqlite做个小东西,原计划用sqlite3,不过需要PDO扩展支持,不是很方便。而sqlite2是PHP5默认支持的,很多php虚拟机应该能够支持。现在只是学习,性能不是必须考虑的东西,方便第一!

现准备收集一些php_sqlite的资料。

函数(来自官方文档,直接复制没加修改):

sqlite_array_query — Execute a query against a given database and returns an array
sqlite_busy_timeout — Set busy timeout duration, or disable busy handlers
sqlite_changes — Returns the number of rows that were changed by the most recent SQL statement
sqlite_close — Closes an open SQLite database
sqlite_column — Fetches a column from the current row of a result set
sqlite_create_aggregate — Register an aggregating UDF for use in SQL statements
sqlite_create_function — Registers a "regular" User Defined Function for use in SQL statements
sqlite_current — Fetches the current row from a result set as an array
sqlite_error_string — Returns the textual description of an error code
sqlite_escape_string — Escapes a string for use as a query parameter
sqlite_exec — Executes a result-less query against a given database
sqlite_factory — Opens a SQLite database and returns a SQLiteDatabase object
sqlite_fetch_all — Fetches all rows from a result set as an array of arrays
sqlite_fetch_array — Fetches the next row from a result set as an array
sqlite_fetch_column_types — Return an array of column types from a particular table
sqlite_fetch_object — Fetches the next row from a result set as an object
sqlite_fetch_single — Fetches the first column of a result set as a string
sqlite_fetch_string — Alias of sqlite_fetch_single
sqlite_field_name — Returns the name of a particular field
sqlite_has_more — Finds whether or not more rows are available
sqlite_has_prev — Returns whether or not a previous row is available
sqlite_key — Returns the current row index
sqlite_last_error — Returns the error code of the last error for a database
sqlite_last_insert_rowid — Returns the rowid of the most recently inserted row
sqlite_libencoding — Returns the encoding of the linked SQLite library
sqlite_libversion — Returns the version of the linked SQLite library
sqlite_next — Seek to the next row number
sqlite_num_fields — Returns the number of fields in a result set
sqlite_num_rows — Returns the number of rows in a buffered result set
sqlite_open — Opens a SQLite database and create the database if it does not exist
sqlite_popen — Opens a persistent handle to an SQLite database and create the database if it does not exist
sqlite_prev — Seek to the previous row number of a result set
sqlite_query — Executes a query against a given database and returns a result handle
sqlite_rewind — Seek to the first row number
sqlite_seek — Seek to a particular row number of a buffered result set
sqlite_single_query — Executes a query and returns either an array for one single column or the value of the first row
sqlite_udf_decode_binary — Decode binary data passed as parameters to an UDF
sqlite_udf_encode_binary — Encode binary data before returning it from an UDF
sqlite_unbuffered_query — Execute a query that does not prefetch and buffer all data
sqlite_valid — Returns whether more rows are available
记录于此,准备逐渐翻译学习

list-style

list-style版本:CSS1  兼容性:IE4+ NS4+ 继承性:有

语法:

list-style : list-style-image || list-style-position || list-style-type

参数:

该属性是复合属性。请参阅各参数对应的属性。

说明:

设置列表项目相关内容。
对应的脚本特性为listStyle。请参阅我编写的其他书目。

示例:

li { list-style: url("http://www.dhtmlet.com/devgurupix.gif"), inside, circle; }
ul { list-style: outside, upper-roman; }
ol { list-style: square; }

list-style-image版本:CSS1  兼容性:IE4+ NS6+ 继承性:有

语法:

list-style-image : none | url (url)

参数:

none :  不指定图像
url :  使用绝对或相对地址指定背景图像

说明:

设置或检索作为对象的列表项标记的图像。
若list-style-image属性为none或指定图像不可用时,list-style-type属性将发生作用。
对应的脚本特性为listStyleImage。请参阅我编写的其他书目。

示例:

ul.out { list-style-position: outside; list-style-image: url("images/ie.gif"); }

list-style-position版本:CSS1  兼容性:IE4+ NS6+ 继承性:有

语法:

list-style-position : outside | inside

参数:

outside :  列表项目标记放置在文本以外,且环绕文本不根据标记对齐
inside :  列表项目标记放置在文本以内,且环绕文本根据标记对齐

说明:

设置或检索作为对象的列表项标记如何根据文本排列。
仅作用于具有display值等于list-item的对象(如li对象)。
注意:ol对象和ul对象的type特性为其后的所有列表项目(如li对象)指明列表属性。请参阅我的其他著作。
对应的脚本特性为listStylePosition。请参阅我编写的其他书目。

list-style-type版本:CSS1/CSS2  兼容性:IE4+ NS4+ 继承性:有

语法:

list-style-type : disc | circle | square | decimal | lower-roman | upper-roman | lower-alpha | upper-alpha | none | armenian | cjk-ideographic | georgian | lower-greek | hebrew | hiragana | hiragana-iroha | katakana | katakana-iroha | lower-latin | upper-latin

参数:

disc :  CSS1 实心圆
circle :  CSS1 空心圆
square :  CSS1 实心方块
decimal :  CSS1 阿拉伯数字
lower-roman :  CSS1 小写罗马数字
upper-roman :  CSS1 大写罗马数字
lower-alpha :  CSS1 小写英文字母
upper-alpha :  CSS1 大写英文字母
none :  CSS1 不使用项目符号
armenian :  CSS2 传统的亚美尼亚数字
cjk-ideographic :  CSS2 浅白的表意数字
georgian :  CSS2 传统的乔治数字
lower-greek :  CSS2 基本的希腊小写字母
hebrew :  CSS2 传统的希伯莱数字
hiragana :  CSS2 日文平假名字符
hiragana-iroha :  CSS2 日文平假名序号
katakana :  CSS2 日文片假名字符
katakana-iroha :  CSS2 日文片假名序号
lower-latin :  CSS2 小写拉丁字母
upper-latin :  CSS2 大写拉丁字母

说明:

设置或检索对象的列表项所使用的预设标记。
若list-style-image属性为none或指定图像不可用时,list-style-type属性将发生作用。
仅作用于具有display值等于list-item的对象(如li对象)。
注意:ol对象和ul对象的type特性为其后的所有列表项目(如li对象)指明列表属性。请参阅我的其他著作。
IE5.5尚不支持所有CSS2的值。
对应的脚本特性为listStyleType。请参阅我编写的其他书目。

marker-offset版本:CSS2  兼容性:NONE 继承性:无

语法:

marker-offset : auto | length

参数:

auto :  浏览器自动设置间距
length :  由浮点数字和单位标识符组成的长度值。可为负值。请参阅长度单位

说明:

设置或检索标记容器和主容器之间水平补白。即两个容器靠近的一边的间距。
目前IE5.5尚不支持此属性。
对应的脚本特性为markerOffset。

list-style属性影响代码高亮插件显示

在改变模版后发现原来的高亮插件显示的代码在IE下有些不正常,行号总个代码挤在一起,不肯跑到前面留着的空地去

后来检查了好久才发现是list-style属性的问题

ol { list-style: decimal inside ; margin-bottom: 10px;}

改为

ol { list-style: decimal outside ; margin-bottom: 10px;}

显示就正常了

通过子程序加工连续等距孔

前几天帮人做个模版,要在一个板上钻四百左右个孔,每排20多个,有18排,简单分析了下首选指令为 G81 孔加工循环,不过看了下手册在KND-10M的机器上G81没有K参数,那么每加工一个孔都需要一个坐标,相当麻烦.
最后只有用子程序了,子程序钻单孔并移动一段距离,然后在主程序中调用,子程序如下:

O9001;
N10 G90 G81 Z-3 R2 F20;
N20 G91 G00 X12.2 ;
N30 M99;

主程序

O0001;
N10 G90 G54 X0 Y0 Z10 S800 M03;
N20 G00 X0 Y7.9;
N30 M98 P89001;
N40 ...