我编写了基于以下内容的简单引导加载程序:http : //www.viralpatel.net/taj/tutorial/hello_world_bootloader.php
[BITS 16] ;16bit
[ORG 0x7C00] ;offset
MOV AH, 0x00 ; change video mode
MOV AL, 0x13 ; 0x13
INT 0x10 ; interrupt
CALL DrawTenLines ;lets draw
JMP $ ;hang it
DrawOneLine:
MOV CX, 0x00 ;x = 0
nextpixel:
MOV AH, 0x09 ;func number - WritePixelOnScreen [wiki]
MOV AL, 0x05 ;color - Magenta
MOV BH, 0x00 ;Page no
INT 0x10 ;Video interrupt - BIOS
CMP CX, 10 ;if (x == 10) {
JE exitfunc ;exit function } …
Run Code Online (Sandbox Code Playgroud) 在主题中 - 为什么你可以把它们放在.htaccess中.
我一直以为它应该在php.ini中,而不是在.htaccess中.
的.htaccess
php_value max_execution_time 240
php_value max_input_time 111
Run Code Online (Sandbox Code Playgroud)
php.ini中
max_execution_time 240
max_input_time 111
Run Code Online (Sandbox Code Playgroud)
为什么会那样?