File: is-not-identical.xml

package info (click to toggle)
php-doc 20140201-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 74,084 kB
  • ctags: 4,040
  • sloc: xml: 998,137; php: 20,812; cpp: 500; sh: 177; makefile: 63; awk: 28
file content (55 lines) | stat: -rw-r--r-- 1,465 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision: 324373 $ -->
<section xml:id="internals2.opcodes.is-not-identical">
 <title>IS_NOT_IDENTICAL</title>
 <section xml:id="internals2.opcodes.is-not-identical.code">
  <title>PHP code</title>
  <programlisting role="php">
   <![CDATA[
<?php
/*
 * compares value1 and value2 to see if they are unequal or of different types
 * opcode number: 16
 */
echo (1 !== 1);
?>
]]>
  </programlisting>
 </section>
 <section xml:id="internals2.opcodes.is-not-identical.listing">
  <title>PHP opcodes</title>
  <simpara>Function name: (null)</simpara>
  <simpara>Compiled variables: none </simpara>
  <informaltable>
   <tgroup cols="7">
    <thead>
     <row>
      <entry>line</entry><entry>#</entry><entry>op</entry>
      <entry>fetch</entry><entry>ext</entry><entry>return</entry>
      <entry>operands</entry>
     </row>
    </thead>
    <tbody>
     <row>
      <entry>6</entry><entry>0</entry>
      <entry>IS_NOT_IDENTICAL</entry><entry></entry>
      <entry></entry><entry>~0</entry>
      <entry>1,1</entry>
     </row>
     <row>
      <entry></entry><entry>1</entry>
      <entry>ECHO</entry><entry></entry>
      <entry></entry><entry></entry>
      <entry>~0</entry>
     </row>
     <row>
      <entry>7</entry><entry>2</entry>
      <entry>RETURN</entry><entry></entry>
      <entry></entry><entry></entry>
      <entry>1</entry>
     </row>
    </tbody>
   </tgroup>
  </informaltable>
 </section>
</section>