Skip to content

Commit e7a7bae

Browse files
authored
Merge pull request #924 from igorradovanov/replace-zend-opcodes-link
Fix broken link - Zend Engine 2 Opcodes
2 parents 4841df6 + dd4c0f9 commit e7a7bae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_posts/14-02-01-Opcode-Cache.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ anchor: opcode_cache
55

66
## Opcode Cache {#opcode_cache_title}
77

8-
When a PHP file is executed, it must first be compiled into [opcodes](https://secure.php.net/manual/internals2.opcodes.php) (machine language instructions for the CPU). If the source code is unchanged, the opcodes will be the same, so this compilation step becomes a waste of CPU resources.
8+
When a PHP file is executed, it must first be compiled into [opcodes](https://php-legacy-docs.zend.com/manual/php4/en/internals2.opcodes) (machine language instructions for the CPU). If the source code is unchanged, the opcodes will be the same, so this compilation step becomes a waste of CPU resources.
99

1010
An opcode cache prevents redundant compilation by storing opcodes in memory and reusing them on successive calls. It will typically check signature or modification time of the file first, in case there have been any changes.
1111

0 commit comments

Comments
 (0)