This file is indexed.

/usr/share/doc/php-elisp/php-mode.html is in php-elisp 1.5.0-1.1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   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
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- This manual documents PHP mode version 1.5.0 for
use with GNU Emacs.

Copyright C 2008  Aaron S. Hawley

Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation
License, Version 1.2 or any later version published by the
Free Software Foundation; with no Invariant Sections, and no
Cover Texts.  A copy of the license is included in the
section entitled "Copying This Manual."

A copy of the license is also available from the Free
Software Foundation Web site at
http://www.gnu.org/licenses/fdl.html.



The document was typeset with
http://www.texinfo.org/, GNU Texinfo.

$Date: 2008-11-04 11:51:51 -0500 (Tue, 04 Nov 2008) $

$Revision: 90 $




 -->
<!-- Created on October 17, 2010 by texi2html 1.82
texi2html was written by: 
            Lionel Cons <Lionel.Cons@cern.ch> (original author)
            Karl Berry  <karl@freefriends.org>
            Olaf Bachmann <obachman@mathematik.uni-kl.de>
            and many others.
Maintained by: Many creative people.
Send bugs and suggestions to <texi2html-bug@nongnu.org>
-->
<head>
<title>PHP Mode Manual</title>

<meta name="description" content="PHP Mode Manual">
<meta name="keywords" content="PHP Mode Manual">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.82">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
blockquote.smallquotation {font-size: smaller}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.roman {font-family:serif; font-weight:normal;}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
-->
</style>


</head>

<body lang="en" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">

<a name="Top"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="PHP-Mode-Manual"></a>
<h1 class="settitle">PHP Mode Manual</h1>

<p>This manual documents PHP mode version 1.5.0 for
use with GNU Emacs.
</p>
<p>Copyright &copy; 2008  Aaron S. Hawley
</p>
<blockquote><p>Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation
License, Version 1.2 or any later version published by the
Free Software Foundation; with no Invariant Sections, and no
Cover Texts.  A copy of the license is included in the
section entitled &ldquo;Copying This Manual.&rdquo;
</p>
<p>A copy of the license is also available from the Free
Software Foundation Web site at
<a href="http://www.gnu.org/licenses/fdl.html">http://www.gnu.org/licenses/fdl.html</a>.
</p>
</blockquote>

<p>The document was typeset with
<a href="http://www.texinfo.org/">GNU Texinfo</a>.
</p>
<p>$Date: 2008-11-04 11:51:51 -0500 (Tue, 04 Nov 2008) $
</p>
<p>$Revision: 90 $
</p>




<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#Introduction">1. Introduction</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                
</td></tr>
<tr><td align="left" valign="top"><a href="#Installation">2. Installation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                
</td></tr>
<tr><td align="left" valign="top"><a href="#Electricity">3. Electricity</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                 
</td></tr>
<tr><td align="left" valign="top"><a href="#Motion">4. Motion</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                      
</td></tr>
<tr><td align="left" valign="top"><a href="#Indentation">5. Indentation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                 
</td></tr>
<tr><td align="left" valign="top"><a href="#Editing">6. Editing</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                     
</td></tr>
<tr><td align="left" valign="top"><a href="#Completion">7. Completion</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                  
</td></tr>
<tr><td align="left" valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                
</td></tr>
<tr><td align="left" valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">           
</td></tr>
<tr><td align="left" valign="top"><a href="#Index-Menu">10. Index Menu</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                  
</td></tr>
<tr><td align="left" valign="top"><a href="#Change-Logs">11. Change Logs</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                 
</td></tr>
<tr><td align="left" valign="top"><a href="#Speedbar">12. Speedbar</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                    
</td></tr>
<tr><td align="left" valign="top"><a href="#Customization">13. Customization</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               
</td></tr>
<tr><td align="left" valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               
</td></tr>
<tr><td align="left" valign="top"><a href="#Contributors">B. Contributors</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">                
</td></tr>
<tr><td align="left" valign="top"><a href="#Copying-This-Manual">C. Copying This Manual</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">         
</td></tr>
<tr><td align="left" valign="top"><a href="#Concept-Index">Concept Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">               
</td></tr>
<tr><td align="left" valign="top"><a href="#Function-Index">Function Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              
</td></tr>
<tr><td align="left" valign="top"><a href="#Keyboard-Index">Keyboard Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              
</td></tr>
<tr><td align="left" valign="top"><a href="#Variable-Index">Variable Index</a></td><td>&nbsp;&nbsp;</td><td align="left" valign="top">              
</td></tr>
</table>

<hr size="1">
<a name="Introduction"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Installation" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Introduction-1"></a>
<h1 class="chapter">1. Introduction</h1>

<a name="index-C-mode"></a>
<a name="index-features"></a>
<a name="index-PEAR"></a>
<a name="index-PHP-versions"></a>
<a name="index-syntax-highlighting"></a>
<a name="index-version_002c-PHP"></a>
<p>PHP mode is a major mode for editing PHP source code in
Emacs.  As an extension of Emacs&rsquo;s C mode, it inherits all C
mode&rsquo;s navigation and editing functionality.  Syntax
elements of PHP source code is colored according to the
grammar of PHP versions 3, 4 and 5.  By default, the indent
rules follow the PHP PEAR coding guidelines.  Additional
aids for developing in PHP include documentation search of
the PHP manual, code completion and a class browser.
</p>
<a name="index-version_002c-PHP-mode"></a>
<a name="index-php_002dmode_002dversion"></a>
<a name="index-M_002dx-php_002dmode_002dversion"></a>
<p>To find out what version of PHP mode you have installed run
<kbd>M-x php-mode-version</kbd>.
</p>
<p>PHP mode was first released in 1999 and was written by
Turadg Aleahmad.  At the time of PHP mode&rsquo;s initial release,
version 2 of PHP (PHP/FI) was only 2 years old and the
release of PHP 3 had happened the year before.  In May of
2000, PHP 4 was released.  Subsequent versions of PHP mode
scurried to support the quickly evolving syntax of this
emerging programming language.
</p>
<p>In 2001, PHP mode became a SourceForge project and version
1.0 was released later that year.  Further refinements of
the Emacs library included improvements to the syntax
coloring rules, portability between XEmacs and GNU Emacs,
integration of various development tools available in
various Emacsen.
</p>
<p>PHP mode&rsquo;s support for PHP 5 first appeared in 2004, the
same year PHP 5 was released.  2004 was the last year
Aleahmad made a release.  In 2005, Lennart Borgman combined
a forked version of PHP mode with his &ldquo;new XML mode for
Emacs&rdquo; (nXhtml).  The stalled development of PHP resulted
in people sharing various patches and improvements to PHP
mode over the Internet.
</p>
<p>The 1.4 release in 2008 represented a renewed commitment to
the Emacs Lisp library with the addition of considerable
updates and improvements &ndash; the first in over 2 years.
</p>

<p>This manual describes PHP mode for practiced Emacs users
especially those who have read or can refer to the Emacs
manual.  The reader should already know how to program in
PHP, although one could easily learn how to program PHP
using PHP mode and Emacs.  There are no explanations of PHP
programming in this manual.
</p>
<hr size="6">
<a name="Installation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Introduction" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Electricity" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Introduction" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Electricity" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Installation-1"></a>
<h1 class="chapter">2. Installation</h1>

<a name="index-installing-PHP-mode"></a>
<a name="index-PHP-mode_002c-installing"></a>
<p>PHP mode can be installed like any Emacs Lisp library.
</p>
<a name="index-downloading-PHP-mode"></a>
<a name="index-PHP-mode_002c-downloading"></a>
<p>Download a source archive of the file.  It is available from
PHP mode&rsquo;s Web site.
</p>
<a name="index-PHP-mode-Web-site"></a>
<a name="index-Web-site_002c-PHP-mode"></a>
<p><a href="http://php-mode.sourceforge.net/">http://php-mode.sourceforge.net/</a>
</p>
<a name="index-GPG-signature"></a>
<a name="index-verifiy-PHP-mode-with-GPG"></a>
<a name="index-OpenPGP"></a>
<a name="index-GnuPG"></a>
<p>Download either the file
&lsquo;<tt>php-mode-1.5.0.tar.gz</tt>&rsquo; or
&lsquo;<tt>php-mode-1.5.0.zip</tt>&rsquo;.  Both source files have
a respective GnuPG<a name="DOCF1" href="#FOOT1">(1)</a> signature file with
a <var>.sig</var> file name extension.
</p>
<p>To verify the source archive you need the key of the
maintainer.  The public key can be downloaded from the Web
site and imported, or imported from a key server.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ gpg --recv-keys 8E372922
gpg: requesting key 8E372922 from hkp server keys.gnupg.net
gpg: key 8E372922: public key
&quot;Aaron S. Hawley (SourceForge) &lt;ashawley@users.sourceforge.net&gt;&quot;
imported
</pre></td></tr></table>

<p>The public key can also be imported from a file.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ gpg --import ashawley-sf-pubkey.asc
gpg: key 8E372922: public key
&quot;Aaron S. Hawley (SourceForge) &lt;ashawley@users.sourceforge.net&gt;&quot;
imported
gpg: Total number processed: 1
gpg:               imported: 1
</pre></td></tr></table>

<p>Assign the trust for the maintainer key.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ gpg --edit-key 8E372922
Command&gt; trust
pub  1024D/8E372922  created: 2008-01-25  expires: 2010-01-01  usage: SC
                     trust: unknown       validity: unknown
sub  2048g/A4B44512  created: 2008-01-25  expires: 2010-01-01  usage: E
[ unknown] (1). Aaron S. Hawley (SourceForge)
                &lt;ashawley@users.sourceforge.net&gt;

Please decide how far you trust this user to correctly
verify other users' keys (by looking at passports, checking
fingerprints from different sources, etc.)

  1 = I don't know or won't say
  2 = I do NOT trust
  3 = I trust marginally
  4 = I trust fully
  5 = I trust ultimately
  m = back to the main menu

Your decision? 1

pub  1024D/8E372922  created: 2008-01-25  expires: 2010-01-01  usage: SC
                     trust: undefined     validity: unknown
sub  2048g/A4B44512  created: 2008-01-25  expires: 2010-01-01  usage: E
[ unknown] (1). Aaron S. Hawley (SourceForge)
                &lt;ashawley@users.sourceforge.net&gt;
Command&gt; quit
</pre></td></tr></table>


<p>Verify a source package by using the GPG verify command on
the signature file with the source file located in the same
directory.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ gpg --verify php-mode-1.4.0.tar.gz.sig
gpg: Signature made Fri 25 Jan 2008 01:30:24 PM EST
gpg: using DSA key ID 8E372922
gpg: Good signature from
&quot;Aaron S. Hawley (SourceForge) &lt;ashawley@users.sourceforge.net&gt;&quot;
Primary key fingerprint: B425 30C2 4F72 D4F1 FD01
                         D07D 7087 6760 8E37 2922
</pre></td></tr></table>

<a name="index-PHP-mode_002c-unpacking"></a>
<a name="index-unpacking-PHP-mode"></a>
<a name="index-extracting-PHP-mode"></a>
<p>After the source package is verified, unpack the source
archive.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ tar zxf php php-mode-1.5.0.tar.gz
</pre></td></tr></table>

<a name="index-PHP-mode-documentation"></a>
<a name="index-documentatino_002c-PHP-mode"></a>
<p>The files are extracted to the directory
&lsquo;<tt>php-mode-1.5.0</tt>&rsquo;.  Run <kbd>make</kbd> in the
directory to build all the formats of the documentation &ndash;
Info, HTML, PostScript and PDF.  Read the notes in the
&lsquo;<tt>Makefile</tt>&rsquo; to learn how to run <kbd>make</kbd> to compile
the manual into a single particular format.
</p>
<a name="index-_002eemacs_002c-load_002dpath"></a>
<a name="index-load_002dpath"></a>
<p>If you have a local directory where Emacs Lisp libraries are
stored, for example &lsquo;<tt>~/elisp</tt>&rsquo;, then put the following
in your &lsquo;<tt>.emacs</tt>&rsquo; file if you haven&rsquo;t already
</p>
<table><tr><td>&nbsp;</td><td><pre class="lisp">(add-to-list 'load-path &quot;~/elisp&quot;)
</pre></td></tr></table>

<a name="index-php_002dmode_002eel_002c-installing"></a>
<a name="index-installing-php_002dmode_002eel"></a>
<a name="index-php_002dmode_002eel_002c-loading"></a>
<a name="index-loading-php_002dmode_002eel"></a>
<a name="index-php_002dmode"></a>
<a name="index-load_002dpath-1"></a>
<p>Then, put the file &lsquo;<tt>php-model.el</tt>&rsquo; into your Emacs
<code>load-path</code>, &lsquo;<tt>~/elisp</tt>&rsquo;, and add <code>php-mode</code> to
your &lsquo;<tt>.emacs</tt>&rsquo; file.
</p>
<table><tr><td>&nbsp;</td><td><pre class="lisp">(load &quot;php-mode&quot;)
</pre></td></tr></table>

<a name="index-PHP-file-name-extension"></a>
<a name="index-extension_002c-PHP-file-name"></a>
<a name="index-file-name-extension_002c-PHP"></a>
<a name="index-customize_002dvariable"></a>
<a name="index-M_002dx-customize_002dvariable"></a>
<p>From inside Emacs, run <kbd>M-x customize-variable RET
php-file-patterns RET</kbd>.  This variable instructs Emacs what
file names should be opened in PHP mode.  If the defaults
are fine, then click or hit <kbd>RET</kbd> on &lsquo;<samp>Save for
Future Sessions</samp>&rsquo;.
</p>
<a name="index-_002eemacs_002c-auto_002dmode_002dalist"></a>
<p>Alternatively, put these lines in your &lsquo;<tt>.emacs</tt>&rsquo; file.
</p>
<table><tr><td>&nbsp;</td><td><pre class="lisp">(add-to-list 'auto-mode-alist
	     '(&quot;\\.php[34]?\\'\\|\\.phtml\\'&quot; . php-mode))
</pre></td></tr></table>

<a name="index-Drupal"></a>
<a name="index-_002eemacs_002c-Drupal"></a>
<p>If you work on projects, like Drupal, that use other
extension for PHP source file, you may need to add this to
your &lsquo;<tt>.emacs</tt>&rsquo;.
</p>
<table><tr><td>&nbsp;</td><td><pre class="lisp">(add-to-list 'auto-mode-alist '(&quot;\\.module\\'&quot; . php-mode))
(add-to-list 'auto-mode-alist '(&quot;\\.inc\\'&quot; . php-mode))
</pre></td></tr></table>




<hr size="6">
<a name="Electricity"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Installation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Motion" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Installation" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Motion" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Electricity-1"></a>
<h1 class="chapter">3. Electricity</h1>



<a name="index-electricity"></a>
<a name="index-self_002dinsert_002dcommand"></a>
<p>Certain characters when inserted in Emacs have
<em>electricity</em>.  Emacs recognizes them as &ldquo;electric&rdquo;
and automatically reacts in some way to their insertion.
This is unlike the <code>self-insert-command</code> &ndash; the
conventional manner Emacs inserts most characters into the
buffer and without side-effect.
</p>
<a name="index-indentation_002c-electric"></a>
<a name="index-electric-indentation"></a>
<a name="index-declaration-blocks"></a>
<a name="index-conditional-statements"></a>
<a name="index-braces"></a>
<a name="index-comments"></a>
<a name="index-TAB"></a>
<p>For example, the indent commands for programming language
modes &ndash; including PHP mode &ndash; are electric.  Hitting
<kbd>TAB</kbd> (or <kbd>C-i</kbd>) typically indents the line to the
correct column based on the nested declaration blocks or
conditional (control) syntax statements.  Other examples of
electric characters include braces ({ and }), characters
related to comments (#, / and *), and
semicolons.  Inserting &ldquo;electric&rdquo; characters causes the
line to be automatically be indented appropriately by PHP
mode.
</p>
<a name="index-quoted_002dinsert"></a>
<a name="index-C_002dq"></a>
<a name="index-c_002dtoggle_002delectric_002dstate"></a>
<a name="index-C_002dc-C_002dl"></a>
<p>Should PHP mode ever do something you wish it didn&rsquo;t, like
indenting incorrectly after inserting a character when you
wish it didn&rsquo;t, then you&rsquo;ve been <em>electrocuted</em>.  To
avoid this, use <code>quoted-insert</code> by prefixing the
character with <kbd>C-q</kbd>.  For example, <kbd>C-q TAB</kbd> for a
tab.  Alternatively, disable the electric effect of PHP mode
with <kbd>C-c C-l</kbd>.  Issue <kbd>C-c C-l</kbd> again to activate
the electric effect again.
</p>

<hr size="6">
<a name="Motion"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Electricity" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Indentation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Electricity" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Indentation" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Motion-1"></a>
<h1 class="chapter">4. Motion</h1>


<a name="index-motion"></a>
<a name="index-movement"></a>
<a name="index-C-mode_002c-movement"></a>
<a name="index-point"></a>

<p>The traditional point movement commands for
Emacs<a name="DOCF2" href="#FOOT2">(2)</a> and Emacs&rsquo;s C mode<a name="DOCF3" href="#FOOT3">(3)</a> are supported in PHP mode.  The following are
noteworthy commands for working on PHP code or are
extensions expressly provided by PHP mode.
</p>
<dl compact="compact">
<dd>
<a name="index-block"></a>
<a name="index-braces-1"></a>
<a name="index-parentheses"></a>
<a name="index-string"></a>
<a name="index-statements"></a>
<a name="index-syntax_002c-forward"></a>
<a name="index-forward_002dsexp"></a>
<a name="index-C_002dM_002df"></a>
</dd>
<dt> <kbd>C-M-f</kbd></dt>
<dd><p>Move forward past the current syntax (<code>forward-sexp</code>).
If point is in a string literal, move to the end of the
string.  If point is at the beginning of a parenthetical
expression, move to the end of it.  If at the beginning of
statement block that is surrounded by braces, move to the
end of the block.  If point is at an identifier, skip to the
end of it.
<a name="index-syntax_002c-backward"></a>
<a name="index-backward_002dsexp"></a>
<a name="index-C_002dM_002db"></a>
</p></dd>
<dt> <kbd>C-M-b</kbd></dt>
<dd><p>Same as <kbd>C-M-f</kbd>, except a syntactic element move to its
beginning (<code>backward-sexp</code>).
<a name="index-beginning-of-function"></a>
<a name="index-function_002c-beginning-of"></a>
<a name="index-c_002dbeginning_002dof_002ddefun"></a>
<a name="index-C_002dM_002da"></a>
</p></dd>
<dt> <kbd>C-M-a</kbd></dt>
<dd><p>Move point to the beginning of the top-level function
definition (<code>c-beginning-of-defun</code>).
<a name="index-end-of-function"></a>
<a name="index-function_002c-end-of"></a>
<a name="index-c_002dend_002dof_002ddefun"></a>
<a name="index-C_002dM_002de"></a>
</p></dd>
<dt> <kbd>C-M-e</kbd></dt>
<dd><p>Move point to the end of the top-level function definition
(<code>c-end-of-defun</code>).
<a name="index-end-of-function-1"></a>
<a name="index-function_002c-end-of-1"></a>
<a name="index-beginning_002dof_002ddefun"></a>
<a name="index-C_002dM_002d_003cHOME_003e"></a>
</p></dd>
<dt> <kbd>C-M-&lt;HOME&gt;</kbd></dt>
<dd><p>Move point to the beginning of the current function
(<code>beginning-of-defun</code>).
<a name="index-end-of-function-2"></a>
<a name="index-function_002c-end-of-2"></a>
<a name="index-end_002dof_002ddefun"></a>
<a name="index-C_002dM_002d_003cEND_003e"></a>
</p></dd>
<dt> <kbd>C-M-&lt;END&gt;</kbd></dt>
<dd><p>Move point to the end of the current function
(<code>end-of-defun</code>).
<a name="index-indentation_002c-move-to"></a>
<a name="index-back_002dto_002dindentation"></a>
<a name="index-M_002dm"></a>
</p></dd>
<dt> <kbd>M-m</kbd></dt>
<dd><p>Move to the indentation at the beginning of the line
(<code>back-to-indentation</code>).
<a name="index-bumpy-case"></a>
<a name="index-camel-case"></a>
<a name="index-mixed-case"></a>
<a name="index-case_002c-mixed"></a>
<a name="index-function_002c-end-of-3"></a>
<a name="index-backward_002dword"></a>
<a name="index-forward_002dword"></a>
<a name="index-c_002dsubword_002dmode"></a>
<a name="index-C_002dc-C_002dw"></a>
</p></dd>
<dt> <kbd>C-c C-w</kbd></dt>
<dd><p>Enable word motion across mixed case identifiers with
<code>forward-word</code> and <code>backward-word</code> commands
(<code>c-subword-mode</code>).
</p></dd>
</dl>
<a name="index-universal-argument"></a>
<a name="index-numeric-argument"></a>
<a name="index-universal_002dargument"></a>
<a name="index-C_002du"></a>
<p>Most movement commands support prefixing the command with a
<em>numeric argument</em> by using Emacs&rsquo;s <em>universal
argument</em> command.  Type <kbd>C-u <var>n</var></kbd>, where <var>n</var> is
the number of times to repeat a command.  If no number
<var>n</var> is provided, Emacs will repeat the command 4 times
by default.  See <a href="emacs.html#Arguments">Numeric Arguments: (emacs)Arguments</a> section &lsquo;Numeric Arguments&rsquo; in <cite>GNU Emacs Manual</cite>.
</p>
<hr size="6">
<a name="Indentation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Motion" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Editing" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Motion" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Editing" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Indentation-1"></a>
<h1 class="chapter">5. Indentation</h1>


<a name="index-indentation_002c-rules-for"></a>
<a name="index-C-mode_002c-indentation-rules"></a>
<p>PHP mode&rsquo;s indentation settings inherit the defaults set by
Emacs C mode, or the rules customized for C
mode.<a name="DOCF4" href="#FOOT4">(4)</a>
</p>
<a name="index-PEAR_002c-indentation"></a>
<a name="index-spaces"></a>
<a name="index-tabs"></a>
<p>PHP mode provides indentation settings that follow the PHP
PEAR &ldquo;Coding
Standards&rdquo;<a name="DOCF5" href="#FOOT5">(5)</a>.
It has the consequence in PHP mode of making the indentation
commands use four spaces, and not tabs.  This setting is
turned on whenever the file name associated with a buffer
includes the string &ldquo;PEAR&rdquo;, case insensitive and the file
ends in &ldquo;.php&rdquo;.
</p>
<a name="index-indentation_002c-force-PEAR-rules"></a>
<a name="index-php_002dmode_002dforce_002dpear"></a>
<a name="index-customize_002dvariable-1"></a>
<a name="index-M_002dx-customize_002dvariable-1"></a>
<a name="index-_002eemacs_002c-php_002dmode_002dforce_002dpear"></a>
<p>You can force the use of this setting for
all files edited with PHP mode by setting
<code>php-mode-force-pear</code> to non-nil.  Configure the
variable with either <kbd>M-x customize-variable RET
php-mode-force-pear RET</kbd>, or by setting its value in your
Emacs initialization file (&lsquo;<tt>~/.emacs</tt>&rsquo;).
</p>
<a name="index-HTML"></a>
<p>PHP does not appropriately indent HTML tags.  See section <a href="#Embedded-HTML">Embedded HTML</a>.
</p>
<p>To customize PHP mode&rsquo;s indentation rules, change the
following variables.
</p>


<dl compact="compact">
<dd>
<a name="index-indentation_002c-level-of"></a>
<a name="index-c_002dbasic_002doffset"></a>
</dd>
<dt> <code>c-basic-offset</code></dt>
<dd><p>This style variable of C mode controls how many columns in
the level of indentation.  By default this is 4 spaces in
PHP mode (and in C mode).
<a name="index-indent_002dtabs_002dmode"></a>
</p></dd>
<dt> <code>indent-tabs-mode</code></dt>
<dd><p>Variable of Emacs that determines whether indentation
commands should insert the tab character or insert the
equivalent number of space characters.  In PHP mode, this is
set to to nil by default.
<a name="index-tab_002dwidth"></a>
</p></dd>
<dt> <code>tab-width</code></dt>
<dd><p>This variable of Emacs determines how &ldquo;wide&rdquo; a tab in the
buffer should be considered.  This is also traditionally
described as setting the distance between &ldquo;tab stops&rdquo;.  By
default, PHP mode does not insert tabs for indentation.
</p></dd>
<dt> <code>php-mode-force-pear</code></dt>
<dd><p>Use the indentation rules of PHP PEAR for all files opened
in PHP mode.  See above.
</p>
</dd>
</dl>

<a name="index-indentation_002c-commands-for"></a>
<a name="index-C-mode_002c-indentation-rules-1"></a>
<a name="index-C-mode_002c-indentation-commands"></a>
<p>The usual commands for indenting in
Emacs<a name="DOCF6" href="#FOOT6">(6)</a>
and Emacs&rsquo;s C mode<a name="DOCF7" href="#FOOT7">(7)</a>: are supported in PHP mode, following the
indentation rules of PHP.
</p>
<dl compact="compact">
<dd>
<a name="index-tab"></a>
<a name="index-indent-line"></a>
<a name="index-line_002c-indent"></a>
<a name="index-c_002dindent_002dcommand"></a>
<a name="index-TAB-1"></a>
</dd>
<dt> <kbd>TAB</kbd></dt>
<dd><p>Properly indent current line, even from the middle of the
line (<code>c-indent-command</code>).
<a name="index-newline"></a>
<a name="index-indent-newline"></a>
<a name="index-indent-newline-1"></a>
<a name="index-newline_002dand_002dindent"></a>
<a name="index-C_002dj"></a>
</p></dd>
<dt> <kbd>C-j</kbd></dt>
<dd><p>Insert text after point to a newline, and properly indent
the newline (<code>c-indent-command</code>).
<a name="index-indent-region"></a>
<a name="index-region_002c-indent"></a>
<a name="index-indent_002dregion"></a>
<a name="index-C_002dM_002d_005c"></a>
</p></dd>
<dt> <kbd>C-M-\</kbd></dt>
<dd><p>Properly indent each line of region (<code>indent-region</code>).
<a name="index-function_002c-indent"></a>
<a name="index-indent-function"></a>
<a name="index-class_002c-indent"></a>
<a name="index-indent-class"></a>
<a name="index-c_002dindent_002ddefun"></a>
<a name="index-C_002dc-C_002dq"></a>
</p></dd>
<dt> <kbd>C-c C-q</kbd></dt>
<dd><p>Properly indent each line of current top-level function or
top-level class (<code>c-indent-defun</code>).
</p></dd>
</dl>

<hr size="6">
<a name="Editing"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Indentation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Completion" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Indentation" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Completion" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Editing-1"></a>
<h1 class="chapter">6. Editing</h1>


<dl compact="compact">
<dd>
<a name="index-paragraph_002c-fill"></a>
<a name="index-filling"></a>
<a name="index-indentation_002c-filling"></a>
<a name="index-filling-indentation"></a>
<a name="index-filling-comment"></a>
<a name="index-comment_002c-filling"></a>
<a name="index-Docblock-comment"></a>
<a name="index-comment_002c-Docblock"></a>
<a name="index-c_002dfill_002dparagraph"></a>
<a name="index-M_002dq"></a>
</dd>
<dt> <kbd>M-q</kbd></dt>
<dd><p>Fill the paragraph to current value of <code>fill-column</code>.
The command does the right thing for indented code and PHP
comments including Docblock comments.
<a name="index-column_002c-fill"></a>
<a name="index-fill-column"></a>
<a name="index-fill_002dcolumn"></a>
<a name="index-set_002dfill_002dcolumn"></a>
<a name="index-fill_002dparagraph"></a>
<a name="index-C_002dx-f"></a>
</p></dd>
<dt> <kbd>C-u <var>n</var> C-x f</kbd></dt>
<dd><p>Set the <code>fill-column</code> to <var>n</var> when using the
<kbd>M-q</kbd> command (<code>fill-paragraph</code>).
<a name="index-function_002c-mark"></a>
<a name="index-kill_002dregion"></a>
<a name="index-kill_002dring_002dsave"></a>
<a name="index-indent_002dregion-1"></a>
<a name="index-indent_002drigidly"></a>
<a name="index-c_002dmark_002dfunction"></a>
<a name="index-C_002dM_002dh"></a>
<a name="index-C_002dw"></a>
<a name="index-M_002dw"></a>
<a name="index-C_002dM_002d_005c-1"></a>
</p></dd>
<dt> <kbd>C-M-h</kbd></dt>
<dd><p>Mark the current function (<code>c-mark-function</code>).  Puts
the mark at the end and of the function and the point at the
beginning.  Useful if you want to kill the region with
<kbd>C-w</kbd> or <kbd>M-w</kbd>, or indent the region with
<kbd>C-M-\</kbd> or <kbd>C-x TAB</kbd> (See section <a href="#Indentation">Indentation</a>.).
<a name="index-defun_002c-mark"></a>
<a name="index-mark_002ddefun"></a>
<a name="index-M_002dx-mark_002ddefun"></a>
</p></dd>
<dt> <kbd>M-x mark-defun</kbd></dt>
<dd><p>Like <kbd>C-M-h</kbd> (<code>c-mark-function</code>), except place the
mark at the end of the function even if it&rsquo;s not at the
top-level.  With functions that are methods defined in a
class, they may be indented and not top-level functions,
however this command will only mark the current function.
</p>

</dd>
</dl>


<a name="index-narrowing"></a>
<a name="index-widening"></a>
<p>The traditional commands for narrowing to a region in
Emacs<a name="DOCF8" href="#FOOT8">(8)</a> are supported in PHP mode.  The
following commands are notable to mention for working with
PHP or are extensions expressly provided PHP mode.
</p>
<dl compact="compact">
<dd>
<a name="index-function-narrowing"></a>
<a name="index-function_002c-narrow"></a>
<a name="index-narrow_002dto_002ddefun"></a>
<a name="index-C_002dx-n-d"></a>
</dd>
<dt> <kbd>C-x n d</kbd></dt>
<dd><p>Narrow the buffer to the contents of the current function
(<code>narrow-to-defun</code>).  This will narrow to the function
as identified to the current function, even if it is nested
in an object or another function.  The logic to narrow the
function is the same as the <code>beginning-of-defun</code> and
<code>end-of-defun</code> commands &ndash; see <a href="#Motion">Motion</a>, and the
<code>mark-defun</code> command &ndash; see above.
<a name="index-widening-1"></a>
<a name="index-widen"></a>
<a name="index-C_002dx-n-w"></a>
</p></dd>
<dt> <kbd>C-x n w</kbd></dt>
<dd><p>Undo any narrowing by widening the buffer again by making
the rest of the buffer available (<code>widen</code>).
</p></dd>
</dl>

<hr size="6">
<a name="Completion"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Editing" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#PHP-Comments" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Editing" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#PHP-Comments" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Completion-1"></a>
<h1 class="chapter">7. Completion</h1>

<a name="index-completion"></a>
<p>Completing function names, identifiers and PHP keywords is
possible in PHP mode.  In PHP mode, it is possible to
complete identifiers defined by the PHP programming
language, and to complete functions defined by you.
</p>
<a name="index-customization_002c-PHP-manual-path"></a>
<a name="index-PHP-manual-path"></a>
<a name="index-php_002dmanual_002dpath"></a>
<a name="index-_002eemacs_002c-php_002dmanual_002dpath"></a>
<a name="index-customize_002dvariable-2"></a>
<a name="index-M_002dx-customize_002dvariable-2"></a>
<p>For PHP mode to know the functions of keywords of PHP, it
must have access to the PHP manual.  Download the HTML
archive of the manual made of separate files for each
function.<a name="DOCF9" href="#FOOT9">(9)</a>
Unpack the files to a directory, and define the variable
<code>php-manual-path</code> to the location of these files.
Configure this setting with either <kbd>M-x
customize-variable RET php-manual-path RET</kbd>, or by setting
its value in your Emacs initialization file
(&lsquo;<tt>~/.emacs</tt>&rsquo;).
</p>


<a name="index-etags"></a>
<a name="index-tag-file"></a>
<a name="index-Makefile"></a>
<p>For functions and classes you define, you&rsquo;ll need to provide
them to Emacs as a <em>tag file</em>.<a name="DOCF10" href="#FOOT10">(10)</a> Creating a
tag file (&lsquo;<tt>TAGS</tt>&rsquo;) from a PHP source code file is done
by running the <code>etags</code> command on the
file.<a name="DOCF11" href="#FOOT11">(11)</a> The
<code>etags</code> command can even generate tag files for
providing completion across multiple files.  For larger
projects and PHP coded libraries, use a system like a
Makefile to generate and maintain the tag tables.
</p>
<a name="index-etags_002c-running"></a>
<p>Run,
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">etags <var>file</var>
</pre></td></tr></table>

<p>to create a &lsquo;<tt>TAGS</tt>&rsquo; file for <var>file</var>.
</p>
<p>To generate a &lsquo;<tt>TAGS</tt>&rsquo; file for all the PHP files in the
current directory, run
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">etags *.php
</pre></td></tr></table>

<p>To enable a tags file you need to use the following command.
</p>
<dl compact="compact">
<dd>
<a name="index-tag"></a>
<a name="index-visit_002dtags_002dtable"></a>
<a name="index-M_002dx-visit_002dtags_002dtable"></a>
</dd>
<dt> <kbd>C-u M-x visit-tags-table</kbd></dt>
<dd><p>Specify the &lsquo;<tt>TAGS</tt>&rsquo; file that PHP mode should use to
find completion candidates for the current buffer.
</p>
</dd>
<dt> <kbd>M-x visit-tags-table</kbd></dt>
<dd><p>Specify the &lsquo;<tt>TAGS</tt>&rsquo; file that PHP mode should use to
find completion candidates for all buffers, and even other
modes other than PHP mode.
</p>
</dd>
</dl>

<a name="index-customization_002c-PHP-completion-file"></a>
<a name="index-PHP-completion-file"></a>
<a name="index-php_002dcompletion_002dfile"></a>
<a name="index-_002eemacs_002c-php_002dcompletion_002dfile"></a>
<p>If you are interested in any one or more of the following
consider using the variable <code>php-completion-file</code>.
</p>
<ol>
<li>
avoid regenerating the completion table from the PHP manual
every Emacs session,
</li><li>
generating a completion file from a facility external to
Emacs tags,
</li><li>
or provide more granular control over the completion
rules for files;

</li></ol>

<a name="index-customize_002dvariable-3"></a>
<a name="index-M_002dx-customize_002dvariable-3"></a>
<p>Configure this setting with either <kbd>M-x
customize-variable RET php-completion-file RET</kbd>, or by
setting its value in your Emacs initialization file
(&lsquo;<tt>~/.emacs</tt>&rsquo;).
</p>
<p>To create a file that can be set for
<code>php-completion-file</code>, create with the following shell
commands with the HTML version of the PHP manual installed
at &lsquo;<tt>/usr/share/doc/php-manual/en/html</tt>&rsquo;.
</p>
<table><tr><td>&nbsp;</td><td><pre class="example">$ cd /usr/share/doc/php-manual/en/html
$ ls -1 function*.html \
  | sed -e 's/^function\.\([-a-zA-Z_0-9]*\)\.html/\1/' \
  | tr - _ \
  &gt; ~/.emacs.d/php/php-completion-file
</pre></td></tr></table>



<p>In larger projects or with other specific needs,
conventional methods of setting these and other variables
may be inadequate.  As of 2008, third-party packages do
exist for Emacs to configure Emacs settings on groups of
files or for directory trees, including &lsquo;<tt>dirvars.el</tt>&rsquo;.
</p>
<dl compact="compact">
<dd>
<a name="index-complete-function"></a>
<a name="index-function_002c-complete"></a>
<a name="index-php_002dcomplete_002dfunction"></a>
<a name="index-M_002dTAB"></a>
<a name="index-ESC-TAB"></a>
<a name="index-C_002d_005b-TAB"></a>
</dd>
<dt> <kbd>M-TAB</kbd></dt>
<dt> <kbd>ESC TAB</kbd></dt>
<dt> <kbd>C-[ TAB</kbd></dt>
<dd><p>Complete function name at point
(<code>php-complete-function</code>).
<a name="index-argument-list_002c-function"></a>
<a name="index-function-argument-list"></a>
<a name="index-minibuffer"></a>
<a name="index-php_002dshow_002darglist"></a>
<a name="index-C_002d_002e"></a>
</p></dd>
<dt> <kbd>C-.</kbd></dt>
<dd><p>Show in the minibuffer the argument list for the current
function at point (<code>php-show-arglist</code>).  The argument
list is generated by finding and jumping to the respective
function&rsquo;s location specified in the tag file (see above).
The argument list is then read and printed to the
minibuffer.
</p></dd>
</dl>

<hr size="6">
<a name="PHP-Comments"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Completion" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#PHP-Documentation" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Completion" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#PHP-Documentation" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="PHP-Comments-1"></a>
<h1 class="chapter">8. PHP Comments</h1>

<a name="index-comment"></a>
<p>The usual commands for inserting, managing and editing
source code comments in Emacs<a name="DOCF12" href="#FOOT12">(12)</a> and Emacs&rsquo;s C mode<a name="DOCF13" href="#FOOT13">(13)</a> are supported in PHP mode.  The following
noteworthy commands are useful for working with PHP or are
extensions expressly provided by PHP mode.
</p>


<dl compact="compact">
<dd>
<a name="index-comment_002c-insert"></a>
<a name="index-indent-comment"></a>
<a name="index-insert-comment"></a>
<a name="index-comment_002c-indent"></a>
<a name="index-comment_002dindent"></a>
<a name="index-comment_002ddwim"></a>
<a name="index-M_002d_003b"></a>
</dd>
<dt> <kbd>M-;</kbd></dt>
<dd><p>Insert comment at point (<code>comment-dwim</code>).  If comment
already exist, indent comment (<code>comment-indent</code>).
<a name="index-M_002dx-comment_002dindent"></a>
<a name="index-newline_002c-comment"></a>
<a name="index-comment-newline"></a>
<a name="index-c_002dindent_002dnew_002dcomment_002dline"></a>
<a name="index-M_002dj"></a>
</p></dd>
<dt> <kbd>M-j</kbd></dt>
<dd><p>Insert a newline in a comment on the next line with the
comment starting at the same column as the current line
(<code>c-indent-new-comment-line</code>).
<a name="index-column_002c-comment"></a>
<a name="index-comment-column"></a>
<a name="index-comment_002dcolumn"></a>
<a name="index-comment_002dset_002dcolumn"></a>
<a name="index-C_002dx-_003b"></a>
</p></dd>
<dt> <kbd>C-x ;</kbd></dt>
<dd><p>Set the current column as the column to start comments from
in the buffer (<code>comment-set-column</code>).  This affects the
variable <code>comment-column</code>.
<a name="index-comment-region"></a>
<a name="index-region_002c-comment"></a>
<a name="index-comment_002dregion"></a>
<a name="index-C_002dc-C_002dc"></a>
</p></dd>
<dt> <kbd>C-c C-c</kbd></dt>
<dd><p>Comment out the current region (<code>comment-region</code>).  If
region is already commented, the region is uncommented.
<a name="index-comment_002c-kill"></a>
<a name="index-kill-comment"></a>
<a name="index-comment_002ddwim-1"></a>
<a name="index-comment_002dset_002dcolumn-1"></a>
<a name="index-comment_002dkill"></a>
<a name="index-M_002d_002d-C_002dx-_003b"></a>
</p></dd>
<dt> <kbd>M-- C-x ;</kbd></dt>
<dt> <kbd>C-u M-;</kbd></dt>
<dd><p>Kill the comment on the current line (<code>comment-kill</code>
called by <code>comment-set-column</code> or <code>comment-dwim</code>).
</p></dd>
<dt> <kbd>C-u <var>n</var> M-;</kbd></dt>
<dd><p>Kill the next <var>n</var> comments (<code>comment-dwim</code>).
<a name="index-region_002c-comment-box"></a>
<a name="index-comment-box"></a>
<a name="index-comment_002dbox"></a>
<a name="index-M_002dx-comment_002dbox"></a>
</p></dd>
<dt> <kbd>M-x comment-box</kbd></dt>
<dd><p>Surround region with comment characters.
</p>
</dd>
</dl>

<hr size="6">
<a name="PHP-Documentation"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#PHP-Comments" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Index-Menu" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#PHP-Comments" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Index-Menu" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="PHP-Documentation-1"></a>
<h1 class="chapter">9. PHP Documentation</h1>

<a name="index-customization_002c-browse_002durl"></a>
<a name="index-documentation_002c-PHP"></a>
<a name="index-PHP-documentation"></a>
<a name="index-browse_002durl"></a>
<a name="index-customize_002dgroup"></a>
<p>PHP mode supports the online documentation available from
<a href="http://www.php.net/">http://www.php.net/</a>.  The <code>browse-url</code> system of
Emacs supports these commands.  Run the Emacs command
<kbd>M-x customize-group RET browse-url RET</kbd> to configure
how <code>browse-url</code> behaves.  For example, you may want to
change the Web browser Emacs uses for visiting a page of the
manual for PHP.
</p>
<dl compact="compact">
<dd>
<a name="index-browse-PHP-manual"></a>
<a name="index-php_002dbrowse_002dmanual"></a>
<a name="index-C_002dc-C_002dm"></a>
<a name="index-C_002dc-RET"></a>
</dd>
<dt> <kbd>C-c C-m</kbd></dt>
<dt> <kbd>C-c RET</kbd></dt>
<dd><p>Browse PHP manual in a Web browser.
<a name="index-search-PHP-manual"></a>
<a name="index-php_002dsearch_002ddocumentation"></a>
<a name="index-C_002dc-C_002df"></a>
</p></dd>
<dt> <kbd>C-c C-f</kbd></dt>
<dd><p>Search PHP manual using identifier at point.
</p>
</dd>
</dl>

<hr size="6">
<a name="Index-Menu"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#PHP-Documentation" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Change-Logs" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#PHP-Documentation" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Change-Logs" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Index-Menu-1"></a>
<h1 class="chapter">10. Index Menu</h1>



<a name="index-index-menu"></a>
<a name="index-menu_002c-index"></a>
<a name="index-index_002c-class"></a>
<a name="index-index_002c-function"></a>
<a name="index-class-index"></a>
<a name="index-function-index"></a>
<p>PHP mode provides a menu of the functions and classes
defined in the current buffer.  The menu is pretty simple,
but is helpful when navigating large files.  The contents of
the menu also provide a good overview to the user about the
file&rsquo;s contents.
</p>

<p>To enable this menu, run the following command.
</p>
<dl compact="compact">
<dd>
<a name="index-menu-bar"></a>
<a name="index-imenu_002dadd_002dmenubar_002dindex"></a>
</dd>
<dt> <kbd>M-x imenu-add-menubar-index</kbd></dt>
<dd><p>Scan the file for functions and class declarations, then add
a menu item called &ldquo;Index&rdquo; to the menu bar.
</p>
</dd>
</dl>

<p>In the menu will be any one or more of the following menu
items.
</p>
<dl compact="compact">
<dd>
<a name="index-imenu"></a>
</dd>
<dt> &lsquo;<samp>All Functions</samp>&rsquo;</dt>
<dd><p>A sub-menu containing the names of functions defined in the
current buffer.  Clicking on a function name will visit the
location of the function&rsquo;s definition.
<a name="index-imenu-1"></a>
</p></dd>
<dt> &lsquo;<samp>Classes</samp>&rsquo;</dt>
<dd><p>A sub-menu containing the names of classes defined in the
current buffer.  Clicking on a class name will visit the
location of the class&rsquo;s definition.
</p></dd>
<dt> &lsquo;<samp>Public Methods, Private Methods, Protected Methods</samp>&rsquo;</dt>
<dd><p>Each of these three &ldquo;method&rdquo; sub-menus list the names of
objects methods defined as &ldquo;public&rdquo;, &ldquo;private&rdquo; or
&ldquo;protected&rdquo;.  Clicking on a method name will visit the
location of the function&rsquo;s definition.
<a name="index-imenu_002dupdate_002dmenubar"></a>
<a name="index-rescan"></a>
</p></dd>
<dt> &lsquo;<samp>*Rescan*</samp>&rsquo;</dt>
<dd><p>Rescan the contents of the current buffer, and update both
the indexes the entries in the menu.
</p>
</dd>
</dl>

<a name="index-customization_002c-Imenu-auto-rescan"></a>
<a name="index-rescan_002c-automatically"></a>
<a name="index-_002eemacs_002c-imenu_002dauto_002drescan"></a>
<a name="index-imenu_002dauto_002drescan"></a>
<a name="index-customize_002dvariable-4"></a>
<a name="index-M_002dx-customize_002dvariable-4"></a>
<p>To have Emacs automatically rescan the current buffer,
change the setting for <code>imenu-auto-rescan</code> to non-nil
with either <kbd>M-x customize-variable RET
php-completion-file RET</kbd>, or by setting its value in your
Emacs initialization file (&lsquo;<tt>~/.emacs</tt>&rsquo;).
</p>
<hr size="6">
<a name="Change-Logs"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Index-Menu" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Speedbar" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Index-Menu" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Speedbar" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Change-Logs-1"></a>
<h1 class="chapter">11. Change Logs</h1>

<a name="index-php_002dbeginning_002dof_002ddefun_002dregexp"></a>
<a name="index-add_002dlog_002dcurrent_002ddefun_002dheader_002dregexp"></a>

<a name="index-ChangeLog"></a>
<a name="index-file_002c-ChangeLog"></a>
<p>PHP mode can help generate &lsquo;<tt>ChangeLog</tt>&rsquo; files, a
widely-adopted format for documenting the changes made to
source code&ndash;especially software.  PHP mode and Emacs will
determine the current function, file name, author
information and date and use it all to prepare a properly
formatted &lsquo;<tt>ChangeLog</tt>&rsquo; entry in the file.
</p>
<a name="index-Diff-mode"></a>
<a name="index-diff-file"></a>
<a name="index-file_002c-diff"></a>
<a name="index-patch-file"></a>
<a name="index-file_002c-patch"></a>
<a name="index-add_002dchange_002dlog_002dentry"></a>
<p>The <code>add-change-log-entry</code> commands can be run from
within a buffer containing a PHP buffer, or from a buffer in
Diff mode with a revision patch to a PHP source file.
See <a href="emacs.html#Diff-Mode">Diff Mode: (emacs)Diff Mode</a> section &lsquo;Diff Mode&rsquo; in <cite>GNU Emacs Manual</cite>.
</p>
<dl compact="compact">
<dd>
<a name="index-ChangeLog-entry"></a>
<a name="index-add-ChangeLog-entry"></a>
<a name="index-add_002dchange_002dlog_002dentry_002dother_002dwindow"></a>
<a name="index-C_002dx-4-a"></a>
</dd>
<dt> <kbd>C-x 4 a</kbd></dt>
<dd><p>Add an entry in a &lsquo;<tt>ChangeLog</tt>&rsquo; file opened in another
window, or add a new line to the already begun entry
(<code>add-change-log-entry-other-window</code>).  Provides the
file name and the respective function name, when applicable,
for the current point.  The point can be in a PHP source
file, or in the hunk of a diff file.<a name="DOCF14" href="#FOOT14">(14)</a>  This
command will also add the current author and date to the
entry.
</p>
</dd>
</dl>

<hr size="6">
<a name="Speedbar"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Change-Logs" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Customization" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Change-Logs" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Customization" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Speedbar-1"></a>
<h1 class="chapter">12. Speedbar</h1>

<p>FIXME: Document speedbar support for PHP mode.
</p>
<hr size="6">
<a name="Customization"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Speedbar" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Embedded-HTML" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Speedbar" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Embedded-HTML" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Customization-1"></a>
<h1 class="chapter">13. Customization</h1>

<a name="index-customization"></a>
<a name="index-_002eemacs"></a>
<a name="index-initialization-file"></a>
<p>Customization for PHP mode can be done using Emacs&rsquo;s
&ldquo;Customize&rdquo; feature<a name="DOCF15" href="#FOOT15">(15)</a>, or
by adding bits of Emacs Lisp to your Emacs initialization
file (&lsquo;<tt>~/.emacs</tt>&rsquo;).
</p>
<dl compact="compact">
<dd><a name="index-customize_002dgroup-1"></a>
<a name="index-M_002dx-customize_002dgroup"></a>
</dd>
<dt> <kbd>M-x customize-group RET php RET</kbd></dt>
<dd><p>Start a &lsquo;<samp>*Customize*</samp>&rsquo; buffer with the customizable
settings for PHP mode.
</p>
</dd>
</dl>




<hr size="6">
<a name="Embedded-HTML"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Customization" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Contributors" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Customization" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Contributors" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Embedded-HTML-1"></a>
<h1 class="appendix">A. Embedded HTML</h1>


<a name="index-markup-formats"></a>
<a name="index-XML"></a>
<a name="index-SGML"></a>
<a name="index-embedded-code"></a>
<a name="index-indentation_002c-markup"></a>
<a name="index-HTML-1"></a>
<p>The PHP programming language is commonly embedded with HTML
but also with other markup formats.  Unfortunately, PHP mode
is currently unable to recognize these other bits and
provide commands that behave appropriately.  Other Emacs
modes for properly indenting HTML include HTML mode, SGML
mode and XML mode.
</p>
<a name="index-php_002dmode-1"></a>
<a name="index-M_002dx-php_002dmode"></a>
<a name="index-html_002dmode"></a>
<a name="index-M_002dx-html_002dmode"></a>
<p>For example, when editing the HTML sections found in a PHP
file, consider turning on HTML mode with <kbd>M-x
html-mode</kbd>.  Use the the mode-specific commands for
manipulating the HTML.  When finished, turn back on PHP mode
with <kbd>M-x php-mode</kbd> to return working on the PHP
sections of the file.
</p>
<a name="index-multiple-major-mode"></a>
<a name="index-mumamo"></a>
<a name="index-mmm_002dmode"></a>
<a name="index-multi_002dmode"></a>
<p>Alternatively, consider using a <em>multiple major mode</em>
like mumamo, mmm-mode or multi-mode.  These modes allow a
single buffer to appoint different major modes to respective
portions of the buffer.
</p>
<hr size="6">
<a name="Contributors"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Embedded-HTML" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Copying-This-Manual" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Embedded-HTML" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Copying-This-Manual" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Contributors-1"></a>
<h1 class="appendix">B. Contributors</h1>

<ul>
<li> Juanjo
</li><li> Torsten Martinsen
</li><li> Vinai Kopp
</li><li> Sean Champ
</li><li> Doug Marcey
</li><li> Kevin Blake
</li><li> Rex McMaster
</li><li> Mathias Meyer
</li><li> Boris Folgmann
</li><li> Roland Rosenfeld
</li><li> Fred Yankowski
</li><li> Craig Andrews
</li><li> John Keller
</li><li> Ryan Sammartino
</li><li> ppercot
</li><li> Valentin Funk
</li><li> Stig Bakken
</li><li> Gregory Stark
</li><li> Chris Morris
</li><li> Nils Rennebarth
</li><li> Gerrit Riessen
</li><li> Eric Mc Sween
</li><li> Ville Skytta
</li><li> Giacomo Tesio
</li><li> Lennart Borgman
</li><li> Stefan Monnier
</li><li> Aaron S. Hawley
</li><li> Aaron Iba
</li><li> Dias Badekas
</li></ul>

<hr size="6">
<a name="Copying-This-Manual"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Contributors" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Contributors" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Copying-This-Manual-1"></a>
<h1 class="appendix">C. Copying This Manual</h1>

<p align="center"> Version 1.2, November 2002
</p>

<table><tr><td>&nbsp;</td><td><pre class="display">Copyright &copy; 2000,2001,2002 Free Software Foundation, Inc.
51 Franklin St, Fifth Floor, Boston, MA  02110-1301, USA

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
</pre></td></tr></table>

<ol>
<li>
PREAMBLE

<p>The purpose of this License is to make a manual, textbook, or other
functional and useful document <em>free</em> in the sense of freedom: to
assure everyone the effective freedom to copy and redistribute it,
with or without modifying it, either commercially or noncommercially.
Secondarily, this License preserves for the author and publisher a way
to get credit for their work, while not being considered responsible
for modifications made by others.
</p>
<p>This License is a kind of &ldquo;copyleft&rdquo;, which means that derivative
works of the document must themselves be free in the same sense.  It
complements the GNU General Public License, which is a copyleft
license designed for free software.
</p>
<p>We have designed this License in order to use it for manuals for free
software, because free software needs free documentation: a free
program should come with manuals providing the same freedoms that the
software does.  But this License is not limited to software manuals;
it can be used for any textual work, regardless of subject matter or
whether it is published as a printed book.  We recommend this License
principally for works whose purpose is instruction or reference.
</p>
</li><li>
APPLICABILITY AND DEFINITIONS

<p>This License applies to any manual or other work, in any medium, that
contains a notice placed by the copyright holder saying it can be
distributed under the terms of this License.  Such a notice grants a
world-wide, royalty-free license, unlimited in duration, to use that
work under the conditions stated herein.  The &ldquo;Document&rdquo;, below,
refers to any such manual or work.  Any member of the public is a
licensee, and is addressed as &ldquo;you&rdquo;.  You accept the license if you
copy, modify or distribute the work in a way requiring permission
under copyright law.
</p>
<p>A &ldquo;Modified Version&rdquo; of the Document means any work containing the
Document or a portion of it, either copied verbatim, or with
modifications and/or translated into another language.
</p>
<p>A &ldquo;Secondary Section&rdquo; is a named appendix or a front-matter section
of the Document that deals exclusively with the relationship of the
publishers or authors of the Document to the Document&rsquo;s overall
subject (or to related matters) and contains nothing that could fall
directly within that overall subject.  (Thus, if the Document is in
part a textbook of mathematics, a Secondary Section may not explain
any mathematics.)  The relationship could be a matter of historical
connection with the subject or with related matters, or of legal,
commercial, philosophical, ethical or political position regarding
them.
</p>
<p>The &ldquo;Invariant Sections&rdquo; are certain Secondary Sections whose titles
are designated, as being those of Invariant Sections, in the notice
that says that the Document is released under this License.  If a
section does not fit the above definition of Secondary then it is not
allowed to be designated as Invariant.  The Document may contain zero
Invariant Sections.  If the Document does not identify any Invariant
Sections then there are none.
</p>
<p>The &ldquo;Cover Texts&rdquo; are certain short passages of text that are listed,
as Front-Cover Texts or Back-Cover Texts, in the notice that says that
the Document is released under this License.  A Front-Cover Text may
be at most 5 words, and a Back-Cover Text may be at most 25 words.
</p>
<p>A &ldquo;Transparent&rdquo; copy of the Document means a machine-readable copy,
represented in a format whose specification is available to the
general public, that is suitable for revising the document
straightforwardly with generic text editors or (for images composed of
pixels) generic paint programs or (for drawings) some widely available
drawing editor, and that is suitable for input to text formatters or
for automatic translation to a variety of formats suitable for input
to text formatters.  A copy made in an otherwise Transparent file
format whose markup, or absence of markup, has been arranged to thwart
or discourage subsequent modification by readers is not Transparent.
An image format is not Transparent if used for any substantial amount
of text.  A copy that is not &ldquo;Transparent&rdquo; is called &ldquo;Opaque&rdquo;.
</p>
<p>Examples of suitable formats for Transparent copies include plain
<small>ASCII</small> without markup, Texinfo input format, LaTeX input
format, <acronym>SGML</acronym> or <acronym>XML</acronym> using a publicly available
<acronym>DTD</acronym>, and standard-conforming simple <acronym>HTML</acronym>,
PostScript or <acronym>PDF</acronym> designed for human modification.  Examples
of transparent image formats include <acronym>PNG</acronym>, <acronym>XCF</acronym> and
<acronym>JPG</acronym>.  Opaque formats include proprietary formats that can be
read and edited only by proprietary word processors, <acronym>SGML</acronym> or
<acronym>XML</acronym> for which the <acronym>DTD</acronym> and/or processing tools are
not generally available, and the machine-generated <acronym>HTML</acronym>,
PostScript or <acronym>PDF</acronym> produced by some word processors for
output purposes only.
</p>
<p>The &ldquo;Title Page&rdquo; means, for a printed book, the title page itself,
plus such following pages as are needed to hold, legibly, the material
this License requires to appear in the title page.  For works in
formats which do not have any title page as such, &ldquo;Title Page&rdquo; means
the text near the most prominent appearance of the work&rsquo;s title,
preceding the beginning of the body of the text.
</p>
<p>A section &ldquo;Entitled XYZ&rdquo; means a named subunit of the Document whose
title either is precisely XYZ or contains XYZ in parentheses following
text that translates XYZ in another language.  (Here XYZ stands for a
specific section name mentioned below, such as &ldquo;Acknowledgements&rdquo;,
&ldquo;Dedications&rdquo;, &ldquo;Endorsements&rdquo;, or &ldquo;History&rdquo;.)  To &ldquo;Preserve the Title&rdquo;
of such a section when you modify the Document means that it remains a
section &ldquo;Entitled XYZ&rdquo; according to this definition.
</p>
<p>The Document may include Warranty Disclaimers next to the notice which
states that this License applies to the Document.  These Warranty
Disclaimers are considered to be included by reference in this
License, but only as regards disclaiming warranties: any other
implication that these Warranty Disclaimers may have is void and has
no effect on the meaning of this License.
</p>
</li><li>
VERBATIM COPYING

<p>You may copy and distribute the Document in any medium, either
commercially or noncommercially, provided that this License, the
copyright notices, and the license notice saying this License applies
to the Document are reproduced in all copies, and that you add no other
conditions whatsoever to those of this License.  You may not use
technical measures to obstruct or control the reading or further
copying of the copies you make or distribute.  However, you may accept
compensation in exchange for copies.  If you distribute a large enough
number of copies you must also follow the conditions in section 3.
</p>
<p>You may also lend copies, under the same conditions stated above, and
you may publicly display copies.
</p>
</li><li>
COPYING IN QUANTITY

<p>If you publish printed copies (or copies in media that commonly have
printed covers) of the Document, numbering more than 100, and the
Document&rsquo;s license notice requires Cover Texts, you must enclose the
copies in covers that carry, clearly and legibly, all these Cover
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on
the back cover.  Both covers must also clearly and legibly identify
you as the publisher of these copies.  The front cover must present
the full title with all words of the title equally prominent and
visible.  You may add other material on the covers in addition.
Copying with changes limited to the covers, as long as they preserve
the title of the Document and satisfy these conditions, can be treated
as verbatim copying in other respects.
</p>
<p>If the required texts for either cover are too voluminous to fit
legibly, you should put the first ones listed (as many as fit
reasonably) on the actual cover, and continue the rest onto adjacent
pages.
</p>
<p>If you publish or distribute Opaque copies of the Document numbering
more than 100, you must either include a machine-readable Transparent
copy along with each Opaque copy, or state in or with each Opaque copy
a computer-network location from which the general network-using
public has access to download using public-standard network protocols
a complete Transparent copy of the Document, free of added material.
If you use the latter option, you must take reasonably prudent steps,
when you begin distribution of Opaque copies in quantity, to ensure
that this Transparent copy will remain thus accessible at the stated
location until at least one year after the last time you distribute an
Opaque copy (directly or through your agents or retailers) of that
edition to the public.
</p>
<p>It is requested, but not required, that you contact the authors of the
Document well before redistributing any large number of copies, to give
them a chance to provide you with an updated version of the Document.
</p>
</li><li>
MODIFICATIONS

<p>You may copy and distribute a Modified Version of the Document under
the conditions of sections 2 and 3 above, provided that you release
the Modified Version under precisely this License, with the Modified
Version filling the role of the Document, thus licensing distribution
and modification of the Modified Version to whoever possesses a copy
of it.  In addition, you must do these things in the Modified Version:
</p>
<ol>
<li>
Use in the Title Page (and on the covers, if any) a title distinct
from that of the Document, and from those of previous versions
(which should, if there were any, be listed in the History section
of the Document).  You may use the same title as a previous version
if the original publisher of that version gives permission.

</li><li>
List on the Title Page, as authors, one or more persons or entities
responsible for authorship of the modifications in the Modified
Version, together with at least five of the principal authors of the
Document (all of its principal authors, if it has fewer than five),
unless they release you from this requirement.

</li><li>
State on the Title page the name of the publisher of the
Modified Version, as the publisher.

</li><li>
Preserve all the copyright notices of the Document.

</li><li>
Add an appropriate copyright notice for your modifications
adjacent to the other copyright notices.

</li><li>
Include, immediately after the copyright notices, a license notice
giving the public permission to use the Modified Version under the
terms of this License, in the form shown in the Addendum below.

</li><li>
Preserve in that license notice the full lists of Invariant Sections
and required Cover Texts given in the Document&rsquo;s license notice.

</li><li>
Include an unaltered copy of this License.

</li><li>
Preserve the section Entitled &ldquo;History&rdquo;, Preserve its Title, and add
to it an item stating at least the title, year, new authors, and
publisher of the Modified Version as given on the Title Page.  If
there is no section Entitled &ldquo;History&rdquo; in the Document, create one
stating the title, year, authors, and publisher of the Document as
given on its Title Page, then add an item describing the Modified
Version as stated in the previous sentence.

</li><li>
Preserve the network location, if any, given in the Document for
public access to a Transparent copy of the Document, and likewise
the network locations given in the Document for previous versions
it was based on.  These may be placed in the &ldquo;History&rdquo; section.
You may omit a network location for a work that was published at
least four years before the Document itself, or if the original
publisher of the version it refers to gives permission.

</li><li>
For any section Entitled &ldquo;Acknowledgements&rdquo; or &ldquo;Dedications&rdquo;, Preserve
the Title of the section, and preserve in the section all the
substance and tone of each of the contributor acknowledgements and/or
dedications given therein.

</li><li>
Preserve all the Invariant Sections of the Document,
unaltered in their text and in their titles.  Section numbers
or the equivalent are not considered part of the section titles.

</li><li>
Delete any section Entitled &ldquo;Endorsements&rdquo;.  Such a section
may not be included in the Modified Version.

</li><li>
Do not retitle any existing section to be Entitled &ldquo;Endorsements&rdquo; or
to conflict in title with any Invariant Section.

</li><li>
Preserve any Warranty Disclaimers.
</li></ol>

<p>If the Modified Version includes new front-matter sections or
appendices that qualify as Secondary Sections and contain no material
copied from the Document, you may at your option designate some or all
of these sections as invariant.  To do this, add their titles to the
list of Invariant Sections in the Modified Version&rsquo;s license notice.
These titles must be distinct from any other section titles.
</p>
<p>You may add a section Entitled &ldquo;Endorsements&rdquo;, provided it contains
nothing but endorsements of your Modified Version by various
parties&mdash;for example, statements of peer review or that the text has
been approved by an organization as the authoritative definition of a
standard.
</p>
<p>You may add a passage of up to five words as a Front-Cover Text, and a
passage of up to 25 words as a Back-Cover Text, to the end of the list
of Cover Texts in the Modified Version.  Only one passage of
Front-Cover Text and one of Back-Cover Text may be added by (or
through arrangements made by) any one entity.  If the Document already
includes a cover text for the same cover, previously added by you or
by arrangement made by the same entity you are acting on behalf of,
you may not add another; but you may replace the old one, on explicit
permission from the previous publisher that added the old one.
</p>
<p>The author(s) and publisher(s) of the Document do not by this License
give permission to use their names for publicity for or to assert or
imply endorsement of any Modified Version.
</p>
</li><li>
COMBINING DOCUMENTS

<p>You may combine the Document with other documents released under this
License, under the terms defined in section 4 above for modified
versions, provided that you include in the combination all of the
Invariant Sections of all of the original documents, unmodified, and
list them all as Invariant Sections of your combined work in its
license notice, and that you preserve all their Warranty Disclaimers.
</p>
<p>The combined work need only contain one copy of this License, and
multiple identical Invariant Sections may be replaced with a single
copy.  If there are multiple Invariant Sections with the same name but
different contents, make the title of each such section unique by
adding at the end of it, in parentheses, the name of the original
author or publisher of that section if known, or else a unique number.
Make the same adjustment to the section titles in the list of
Invariant Sections in the license notice of the combined work.
</p>
<p>In the combination, you must combine any sections Entitled &ldquo;History&rdquo;
in the various original documents, forming one section Entitled
&ldquo;History&rdquo;; likewise combine any sections Entitled &ldquo;Acknowledgements&rdquo;,
and any sections Entitled &ldquo;Dedications&rdquo;.  You must delete all
sections Entitled &ldquo;Endorsements.&rdquo;
</p>
</li><li>
COLLECTIONS OF DOCUMENTS

<p>You may make a collection consisting of the Document and other documents
released under this License, and replace the individual copies of this
License in the various documents with a single copy that is included in
the collection, provided that you follow the rules of this License for
verbatim copying of each of the documents in all other respects.
</p>
<p>You may extract a single document from such a collection, and distribute
it individually under this License, provided you insert a copy of this
License into the extracted document, and follow this License in all
other respects regarding verbatim copying of that document.
</p>
</li><li>
AGGREGATION WITH INDEPENDENT WORKS

<p>A compilation of the Document or its derivatives with other separate
and independent documents or works, in or on a volume of a storage or
distribution medium, is called an &ldquo;aggregate&rdquo; if the copyright
resulting from the compilation is not used to limit the legal rights
of the compilation&rsquo;s users beyond what the individual works permit.
When the Document is included in an aggregate, this License does not
apply to the other works in the aggregate which are not themselves
derivative works of the Document.
</p>
<p>If the Cover Text requirement of section 3 is applicable to these
copies of the Document, then if the Document is less than one half of
the entire aggregate, the Document&rsquo;s Cover Texts may be placed on
covers that bracket the Document within the aggregate, or the
electronic equivalent of covers if the Document is in electronic form.
Otherwise they must appear on printed covers that bracket the whole
aggregate.
</p>
</li><li>
TRANSLATION

<p>Translation is considered a kind of modification, so you may
distribute translations of the Document under the terms of section 4.
Replacing Invariant Sections with translations requires special
permission from their copyright holders, but you may include
translations of some or all Invariant Sections in addition to the
original versions of these Invariant Sections.  You may include a
translation of this License, and all the license notices in the
Document, and any Warranty Disclaimers, provided that you also include
the original English version of this License and the original versions
of those notices and disclaimers.  In case of a disagreement between
the translation and the original version of this License or a notice
or disclaimer, the original version will prevail.
</p>
<p>If a section in the Document is Entitled &ldquo;Acknowledgements&rdquo;,
&ldquo;Dedications&rdquo;, or &ldquo;History&rdquo;, the requirement (section 4) to Preserve
its Title (section 1) will typically require changing the actual
title.
</p>
</li><li>
TERMINATION

<p>You may not copy, modify, sublicense, or distribute the Document except
as expressly provided for under this License.  Any other attempt to
copy, modify, sublicense or distribute the Document is void, and will
automatically terminate your rights under this License.  However,
parties who have received copies, or rights, from you under this
License will not have their licenses terminated so long as such
parties remain in full compliance.
</p>
</li><li>
FUTURE REVISIONS OF THIS LICENSE

<p>The Free Software Foundation may publish new, revised versions
of the GNU Free Documentation License from time to time.  Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.  See
<a href="http://www.gnu.org/copyleft/">http://www.gnu.org/copyleft/</a>.
</p>
<p>Each version of the License is given a distinguishing version number.
If the Document specifies that a particular numbered version of this
License &ldquo;or any later version&rdquo; applies to it, you have the option of
following the terms and conditions either of that specified version or
of any later version that has been published (not as a draft) by the
Free Software Foundation.  If the Document does not specify a version
number of this License, you may choose any version ever published (not
as a draft) by the Free Software Foundation.
</p></li></ol>


<a name="ADDENDUM_003a-How-to-use-this-License-for-your-documents"></a>
<h2 class="heading">ADDENDUM: How to use this License for your documents</h2>

<p>To use this License in a document you have written, include a copy of
the License in the document and put the following copyright and
license notices just after the title page:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">  Copyright (C)  <var>year</var>  <var>your name</var>.
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.2
  or any later version published by the Free Software Foundation;
  with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
  Texts.  A copy of the license is included in the section entitled ``GNU
  Free Documentation License''.
</pre></td></tr></table>

<p>If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts,
replace the &ldquo;with&hellip;Texts.&rdquo; line with this:
</p>
<table><tr><td>&nbsp;</td><td><pre class="smallexample">    with the Invariant Sections being <var>list their titles</var>, with
    the Front-Cover Texts being <var>list</var>, and with the Back-Cover Texts
    being <var>list</var>.
</pre></td></tr></table>

<p>If you have Invariant Sections without Cover Texts, or some other
combination of the three, merge those two alternatives to suit the
situation.
</p>
<p>If your document contains nontrivial examples of program code, we
recommend releasing these examples in parallel under your choice of
free software license, such as the GNU General Public License,
to permit their use in free software.
</p>



<hr size="6">
<a name="Concept-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Copying-This-Manual" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Function-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Copying-This-Manual" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Function-Index" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Concept-Index-1"></a>
<h1 class="unnumbered">Concept Index</h1>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Concept-Index-1_cp_symbol-1" class="summary-letter"><b>.</b></a>
 &nbsp; 
<br>
<a href="#Concept-Index-1_cp_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-B" class="summary-letter"><b>B</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-D" class="summary-letter"><b>D</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-G" class="summary-letter"><b>G</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-K" class="summary-letter"><b>K</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-L" class="summary-letter"><b>L</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-O" class="summary-letter"><b>O</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-R" class="summary-letter"><b>R</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-S" class="summary-letter"><b>S</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-W" class="summary-letter"><b>W</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-cp">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_symbol-1">.</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs">.emacs</a></td><td valign="top"><a href="#Customization">13. Customization</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-auto_002dmode_002dalist">.emacs, auto-mode-alist</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-Drupal">.emacs, Drupal</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-imenu_002dauto_002drescan">.emacs, imenu-auto-rescan</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-load_002dpath">.emacs, load-path</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-php_002dcompletion_002dfile">.emacs, php-completion-file</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-php_002dmanual_002dpath">.emacs, php-manual-path</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-_002eemacs_002c-php_002dmode_002dforce_002dpear">.emacs, php-mode-force-pear</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-add-ChangeLog-entry">add ChangeLog entry</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-argument-list_002c-function">argument list, function</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-B">B</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-beginning-of-function">beginning of function</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-block">block</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-braces">braces</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-braces-1">braces</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-browse-PHP-manual">browse PHP manual</a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-bumpy-case">bumpy case</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-C-mode">C mode</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C-mode_002c-indentation-commands">C mode, indentation commands</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C-mode_002c-indentation-rules">C mode, indentation rules</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C-mode_002c-indentation-rules-1">C mode, indentation rules</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C-mode_002c-movement">C mode, movement</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-camel-case">camel case</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-case_002c-mixed">case, mixed</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-ChangeLog">ChangeLog</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-ChangeLog-entry">ChangeLog entry</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-class-index">class index</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-class_002c-indent">class, indent</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-column_002c-comment">column, comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-column_002c-fill">column, fill</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment">comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment-box">comment box</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment-column">comment column</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment-newline">comment newline</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment-region">comment region</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002c-Docblock">comment, Docblock</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002c-filling">comment, filling</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002c-indent">comment, indent</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002c-insert">comment, insert</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002c-kill">comment, kill</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comments">comments</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-complete-function">complete function</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-completion">completion</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-conditional-statements">conditional statements</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customization">customization</a></td><td valign="top"><a href="#Customization">13. Customization</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customization_002c-browse_002durl">customization, browse-url</a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customization_002c-Imenu-auto-rescan">customization, Imenu auto rescan</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customization_002c-PHP-completion-file">customization, PHP completion file</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customization_002c-PHP-manual-path">customization, PHP manual path</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-D">D</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-declaration-blocks">declaration blocks</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-defun_002c-mark">defun, mark</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-diff-file">diff file</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Diff-mode">Diff mode</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Docblock-comment">Docblock comment</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-documentatino_002c-PHP-mode">documentatino, PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-documentation_002c-PHP">documentation, PHP</a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-downloading-PHP-mode">downloading PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-Drupal">Drupal</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-electric-indentation">electric indentation</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-electricity">electricity</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-embedded-code">embedded code</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-end-of-function">end of function</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-end-of-function-1">end of function</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-end-of-function-2">end of function</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-etags">etags</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-etags_002c-running">etags, running</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-extension_002c-PHP-file-name">extension, PHP file name</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-extracting-PHP-mode">extracting PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-features">features</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-file-name-extension_002c-PHP">file name extension, PHP</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-file_002c-ChangeLog">file, ChangeLog</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-file_002c-diff">file, diff</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-file_002c-patch">file, patch</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-fill-column">fill column</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-filling">filling</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-filling-comment">filling comment</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-filling-indentation">filling indentation</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function-argument-list">function argument list</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function-index">function index</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function-narrowing">function narrowing</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-beginning-of">function, beginning of</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-complete">function, complete</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-end-of">function, end of</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-end-of-1">function, end of</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-end-of-2">function, end of</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-end-of-3">function, end of</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-indent">function, indent</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-mark">function, mark</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-function_002c-narrow">function, narrow</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-G">G</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-GnuPG">GnuPG</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-GPG-signature">GPG signature</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-HTML">HTML</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-HTML-1">HTML</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-class">indent class</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-comment">indent comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-function">indent function</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-line">indent line</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-newline">indent newline</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-newline-1">indent newline</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent-region">indent region</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-commands-for">indentation, commands for</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-electric">indentation, electric</a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-filling">indentation, filling</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-force-PEAR-rules">indentation, force PEAR rules</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-level-of">indentation, level of</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-markup">indentation, markup</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-move-to">indentation, move to</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indentation_002c-rules-for">indentation, rules for</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-index-menu">index menu</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-index_002c-class">index, class</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-index_002c-function">index, function</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-initialization-file">initialization file</a></td><td valign="top"><a href="#Customization">13. Customization</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-insert-comment">insert comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installing-PHP-mode">installing PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-installing-php_002dmode_002eel">installing php-mode.el</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-kill-comment">kill comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-line_002c-indent">line, indent</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-loading-php_002dmode_002eel">loading php-mode.el</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Makefile">Makefile</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-markup-formats">markup formats</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-menu-bar">menu bar</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-menu_002c-index">menu, index</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-minibuffer">minibuffer</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mixed-case">mixed case</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mmm_002dmode">mmm-mode</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-motion">motion</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-movement">movement</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-multi_002dmode">multi-mode</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-multiple-major-mode">multiple major mode</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-mumamo">mumamo</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-narrowing">narrowing</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-newline">newline</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-newline_002c-comment">newline, comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-numeric-argument">numeric argument</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-O">O</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-OpenPGP">OpenPGP</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-paragraph_002c-fill">paragraph, fill</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-parentheses">parentheses</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-patch-file">patch file</a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PEAR">PEAR</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PEAR_002c-indentation">PEAR, indentation</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-completion-file">PHP completion file</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-documentation">PHP documentation</a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-file-name-extension">PHP file name extension</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-manual-path">PHP manual path</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-mode-documentation">PHP mode documentation</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-mode-Web-site">PHP mode Web site</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-mode_002c-downloading">PHP mode, downloading</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-mode_002c-installing">PHP mode, installing</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-mode_002c-unpacking">PHP mode, unpacking</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-PHP-versions">PHP versions</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode_002eel_002c-installing">php-mode.el, installing</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode_002eel_002c-loading">php-mode.el, loading</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-point">point</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-R">R</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-region_002c-comment">region, comment</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-region_002c-comment-box">region, comment box</a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-region_002c-indent">region, indent</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-rescan">rescan</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-rescan_002c-automatically">rescan, automatically</a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-search-PHP-manual">search PHP manual</a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-SGML">SGML</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-spaces">spaces</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-statements">statements</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-string">string</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-syntax-highlighting">syntax highlighting</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-syntax_002c-backward">syntax, backward</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-syntax_002c-forward">syntax, forward</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-tab">tab</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-tabs">tabs</a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-tag">tag</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-tag-file">tag file</a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-universal-argument">universal argument</a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-unpacking-PHP-mode">unpacking PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-verifiy-PHP-mode-with-GPG">verifiy PHP mode with GPG</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-version_002c-PHP">version, PHP</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-version_002c-PHP-mode">version, PHP mode</a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-W">W</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-Web-site_002c-PHP-mode">Web site, PHP mode</a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-widening">widening</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-widening-1">widening</a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Concept-Index-1_cp_letter-X">X</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-XML">XML</a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Concept-Index-1_cp_symbol-1" class="summary-letter"><b>.</b></a>
 &nbsp; 
<br>
<a href="#Concept-Index-1_cp_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-B" class="summary-letter"><b>B</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-D" class="summary-letter"><b>D</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-G" class="summary-letter"><b>G</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-K" class="summary-letter"><b>K</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-L" class="summary-letter"><b>L</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-O" class="summary-letter"><b>O</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-R" class="summary-letter"><b>R</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-S" class="summary-letter"><b>S</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-W" class="summary-letter"><b>W</b></a>
 &nbsp; 
<a href="#Concept-Index-1_cp_letter-X" class="summary-letter"><b>X</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="Function-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Concept-Index" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Keyboard-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Keyboard-Index" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Function-Index-1"></a>
<h1 class="unnumbered">Function Index</h1>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Function-Index-1_fn_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-B" class="summary-letter"><b>B</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-K" class="summary-letter"><b>K</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-Q" class="summary-letter"><b>Q</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-S" class="summary-letter"><b>S</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-W" class="summary-letter"><b>W</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-fn">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-add_002dchange_002dlog_002dentry"><code>add-change-log-entry</code></a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-add_002dchange_002dlog_002dentry_002dother_002dwindow"><code>add-change-log-entry-other-window</code></a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-B">B</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-back_002dto_002dindentation"><code>back-to-indentation</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-backward_002dsexp"><code>backward-sexp</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-backward_002dword"><code>backward-word</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-beginning_002dof_002ddefun"><code>beginning-of-defun</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-browse_002durl"><code>browse-url</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dbeginning_002dof_002ddefun"><code>c-beginning-of-defun</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dend_002dof_002ddefun"><code>c-end-of-defun</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dfill_002dparagraph"><code>c-fill-paragraph</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dindent_002dcommand"><code>c-indent-command</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dindent_002ddefun"><code>c-indent-defun</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dindent_002dnew_002dcomment_002dline"><code>c-indent-new-comment-line</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dmark_002dfunction"><code>c-mark-function</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dsubword_002dmode"><code>c-subword-mode</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dtoggle_002delectric_002dstate"><code>c-toggle-electric-state</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dbox"><code>comment-box</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002ddwim"><code>comment-dwim</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002ddwim-1"><code>comment-dwim</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dindent"><code>comment-indent</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dkill"><code>comment-kill</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dregion"><code>comment-region</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dset_002dcolumn"><code>comment-set-column</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dset_002dcolumn-1"><code>comment-set-column</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dgroup"><code>customize-group</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dgroup-1"><code>customize-group</code></a></td><td valign="top"><a href="#Customization">13. Customization</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dvariable"><code>customize-variable</code></a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dvariable-1"><code>customize-variable</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dvariable-2"><code>customize-variable</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dvariable-3"><code>customize-variable</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-customize_002dvariable-4"><code>customize-variable</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-end_002dof_002ddefun"><code>end-of-defun</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-fill_002dparagraph"><code>fill-paragraph</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-forward_002dsexp"><code>forward-sexp</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-forward_002dword"><code>forward-word</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-H">H</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-html_002dmode"><code>html-mode</code></a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu"><code>imenu</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu-1"><code>imenu</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu_002dadd_002dmenubar_002dindex"><code>imenu-add-menubar-index</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu_002dupdate_002dmenubar"><code>imenu-update-menubar</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent_002dregion"><code>indent-region</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent_002dregion-1"><code>indent-region</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent_002drigidly"><code>indent-rigidly</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-K">K</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-kill_002dregion"><code>kill-region</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-kill_002dring_002dsave"><code>kill-ring-save</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-mark_002ddefun"><code>mark-defun</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-N">N</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-narrow_002dto_002ddefun"><code>narrow-to-defun</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-newline_002dand_002dindent"><code>newline-and-indent</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dbrowse_002dmanual"><code>php-browse-manual</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dcomplete_002dfunction"><code>php-complete-function</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode"><code>php-mode</code></a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode-1"><code>php-mode</code></a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode_002dversion"><code>php-mode-version</code></a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dsearch_002ddocumentation"><code>php-search-documentation</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dshow_002darglist"><code>php-show-arglist</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-Q">Q</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-quoted_002dinsert"><code>quoted-insert</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-S">S</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-self_002dinsert_002dcommand"><code>self-insert-command</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-set_002dfill_002dcolumn"><code>set-fill-column</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-U">U</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-universal_002dargument"><code>universal-argument</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-V">V</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-visit_002dtags_002dtable"><code>visit-tags-table</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Function-Index-1_fn_letter-W">W</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-widen"><code>widen</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Function-Index-1_fn_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-B" class="summary-letter"><b>B</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-H" class="summary-letter"><b>H</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-K" class="summary-letter"><b>K</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-N" class="summary-letter"><b>N</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-Q" class="summary-letter"><b>Q</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-S" class="summary-letter"><b>S</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-U" class="summary-letter"><b>U</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-V" class="summary-letter"><b>V</b></a>
 &nbsp; 
<a href="#Function-Index-1_fn_letter-W" class="summary-letter"><b>W</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="Keyboard-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Function-Index" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Index" title="Next section in reading order"> &gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Function-Index" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="#Variable-Index" title="Next chapter"> &gt;&gt; </a>]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Keyboard-Index-1"></a>
<h1 class="unnumbered">Keyboard Index</h1>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Keyboard-Index-1_ky_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-ky">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Keyboard-Index-1_ky_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002d_002e"><code>C-.</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dc"><code>C-c C-c</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002df"><code>C-c C-f</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dl"><code>C-c C-l</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dm"><code>C-c C-m</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dq"><code>C-c C-q</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-C_002dw"><code>C-c C-w</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dc-RET"><code>C-c RET</code></a></td><td valign="top"><a href="#PHP-Documentation">9. PHP Documentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dj"><code>C-j</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002d_003cEND_003e"><code>C-M-&lt;END&gt;</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002d_003cHOME_003e"><code>C-M-&lt;HOME&gt;</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002da"><code>C-M-a</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002db"><code>C-M-b</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002de"><code>C-M-e</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002df"><code>C-M-f</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002dh"><code>C-M-h</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002d_005c"><code>C-M-\</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dM_002d_005c-1"><code>C-M-\</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dq"><code>C-q</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002du"><code>C-u</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dw"><code>C-w</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-4-a"><code>C-x 4 a</code></a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-_003b"><code>C-x ;</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-f"><code>C-x f</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-n-d"><code>C-x n d</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002dx-n-w"><code>C-x n w</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-C_002d_005b-TAB"><code>C-[ TAB</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Keyboard-Index-1_ky_letter-E">E</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-ESC-TAB"><code>ESC TAB</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Keyboard-Index-1_ky_letter-M">M</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002d_002d-C_002dx-_003b"><code>M-- C-x ;</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002d_003b"><code>M-;</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dj"><code>M-j</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dm"><code>M-m</code></a></td><td valign="top"><a href="#Motion">4. Motion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dq"><code>M-q</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dTAB"><code>M-TAB</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dw"><code>M-w</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-comment_002dbox"><code>M-x comment-box</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-comment_002dindent"><code>M-x comment-indent</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dgroup"><code>M-x customize-group</code></a></td><td valign="top"><a href="#Customization">13. Customization</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dvariable"><code>M-x customize-variable</code></a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dvariable-1"><code>M-x customize-variable</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dvariable-2"><code>M-x customize-variable</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dvariable-3"><code>M-x customize-variable</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-customize_002dvariable-4"><code>M-x customize-variable</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-html_002dmode"><code>M-x html-mode</code></a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-mark_002ddefun"><code>M-x mark-defun</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-php_002dmode"><code>M-x php-mode</code></a></td><td valign="top"><a href="#Embedded-HTML">A. Embedded HTML</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-php_002dmode_002dversion"><code>M-x php-mode-version</code></a></td><td valign="top"><a href="#Introduction">1. Introduction</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-M_002dx-visit_002dtags_002dtable"><code>M-x visit-tags-table</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Keyboard-Index-1_ky_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-TAB"><code>TAB</code></a></td><td valign="top"><a href="#Electricity">3. Electricity</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-TAB-1"><code>TAB</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Keyboard-Index-1_ky_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-E" class="summary-letter"><b>E</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-M" class="summary-letter"><b>M</b></a>
 &nbsp; 
<a href="#Keyboard-Index-1_ky_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="Variable-Index"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Keyboard-Index" title="Previous section in reading order"> &lt; </a>]</td>
<td valign="middle" align="left">[ &gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Keyboard-Index" title="Beginning of this chapter or previous chapter"> &lt;&lt; </a>]</td>
<td valign="middle" align="left">[<a href="#Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[ &gt;&gt; ]</td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left"> &nbsp; </td>
<td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<a name="Variable-Index-1"></a>
<h1 class="unnumbered">Variable Index</h1>

<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Variable-Index-1_vr_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-L" class="summary-letter"><b>L</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
</td></tr></table>
<table border="0" class="index-vr">
<tr><td></td><th align="left">Index Entry</th><th align="left"> Section</th></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-A">A</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-add_002dlog_002dcurrent_002ddefun_002dheader_002dregexp"><code>add-log-current-defun-header-regexp</code></a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-C">C</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-c_002dbasic_002doffset"><code>c-basic-offset</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-comment_002dcolumn"><code>comment-column</code></a></td><td valign="top"><a href="#PHP-Comments">8. PHP Comments</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-F">F</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-fill_002dcolumn"><code>fill-column</code></a></td><td valign="top"><a href="#Editing">6. Editing</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-I">I</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-imenu_002dauto_002drescan"><code>imenu-auto-rescan</code></a></td><td valign="top"><a href="#Index-Menu">10. Index Menu</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-indent_002dtabs_002dmode"><code>indent-tabs-mode</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-L">L</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-load_002dpath"><code>load-path</code></a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-load_002dpath-1"><code>load-path</code></a></td><td valign="top"><a href="#Installation">2. Installation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-P">P</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dbeginning_002dof_002ddefun_002dregexp"><code>php-beginning-of-defun-regexp</code></a></td><td valign="top"><a href="#Change-Logs">11. Change Logs</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dcompletion_002dfile"><code>php-completion-file</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmanual_002dpath"><code>php-manual-path</code></a></td><td valign="top"><a href="#Completion">7. Completion</a></td></tr>
<tr><td></td><td valign="top"><a href="#index-php_002dmode_002dforce_002dpear"><code>php-mode-force-pear</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
<tr><th><a name="Variable-Index-1_vr_letter-T">T</a></th><td></td><td></td></tr>
<tr><td></td><td valign="top"><a href="#index-tab_002dwidth"><code>tab-width</code></a></td><td valign="top"><a href="#Indentation">5. Indentation</a></td></tr>
<tr><td colspan="3"> <hr></td></tr>
</table>
<table><tr><th valign="top">Jump to: &nbsp; </th><td><a href="#Variable-Index-1_vr_letter-A" class="summary-letter"><b>A</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-C" class="summary-letter"><b>C</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-F" class="summary-letter"><b>F</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-I" class="summary-letter"><b>I</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-L" class="summary-letter"><b>L</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-P" class="summary-letter"><b>P</b></a>
 &nbsp; 
<a href="#Variable-Index-1_vr_letter-T" class="summary-letter"><b>T</b></a>
 &nbsp; 
</td></tr></table>

<hr size="6">
<a name="SEC_Foot"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Footnotes</h1>
<h3><a name="FOOT1" href="#DOCF1">(1)</a></h3>
<p>More information on GPG and
OpenPGP at <a href="http://www.gnupg.org/">http://www.gnupg.org/</a>
</p><h3><a name="FOOT2" href="#DOCF2">(2)</a></h3>
<p>See <a href="emacs.html#Moving-Point">Changing the Location of Point: (emacs)Moving Point</a> section &lsquo;Changing the Location of Point&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT3" href="#DOCF3">(3)</a></h3>
<p>See <a href="ccmode.html#Movement-Commands">Movement Commands: (ccmode)Movement Commands</a> section &lsquo;Movement Commands&rsquo; in <cite>CC Mode Manual</cite>.
</p><h3><a name="FOOT4" href="#DOCF4">(4)</a></h3>
<p>See <a href="ccmode.html#Customizing-Indentation">Customizing Indentation: (ccmode)Customizing Indentation</a> section &lsquo;Customizing Indentation&rsquo; in <cite>CC Mode Manual</cite>.
</p><h3><a name="FOOT5" href="#DOCF5">(5)</a></h3>
<p><a href="http://pear.php.net/manual/en/standards.php">http://pear.php.net/manual/en/standards.php</a>
</p><h3><a name="FOOT6" href="#DOCF6">(6)</a></h3>
<p>See <a href="emacs.html#Indentation-Commands">Indentation Commands: (emacs)Indentation Commands</a> section &lsquo;Indentation Commands&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT7" href="#DOCF7">(7)</a></h3>
<p>See <a href="ccmode.html#Indentation-Commands">Indentation Commands: (ccmode)Indentation Commands</a> section &lsquo;Indentation Commands&rsquo; in <cite>CC Mode Manual</cite>.
</p><h3><a name="FOOT8" href="#DOCF8">(8)</a></h3>
<p>See <a href="emacs.html#Narrowing">Narrowing: (emacs)Narrowing</a> section &lsquo;Narrowing&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT9" href="#DOCF9">(9)</a></h3>
<p><a href="http://www.php.net/download-docs.php">http://www.php.net/download-docs.php</a>
</p><h3><a name="FOOT10" href="#DOCF10">(10)</a></h3>
<p>See <a href="emacs.html#Tags">Tags Tables: (emacs)Tags</a> section &lsquo;Tags Tables&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT11" href="#DOCF11">(11)</a></h3>
<p>See <a href="emacs.html#Create-Tags-Table">Creating Tags Tables: (emacs)Create Tags Table</a> section &lsquo;Creating Tags Tables&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT12" href="#DOCF12">(12)</a></h3>
<p>See <a href="emacs.html#Comments">Manipulating Comments: (emacs)Comments</a> section &lsquo;Manipulating Comments&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT13" href="#DOCF13">(13)</a></h3>
<p>See <a href="ccmode.html#Comment-Commands">Comment Commands: (ccmode)Comment Commands</a> section &lsquo;Comment Commands&rsquo; in <cite>CC Mode Manual</cite>.
</p><h3><a name="FOOT14" href="#DOCF14">(14)</a></h3>
<p>See <a href="emacs.html#Diff-Mode">Diff Mode: (emacs)Diff Mode</a> section &lsquo;Diff Mode&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><h3><a name="FOOT15" href="#DOCF15">(15)</a></h3>
<p>See <a href="emacs.html#Customization">Customization: (emacs)Customization</a> section &lsquo;Customization&rsquo; in <cite>GNU Emacs Manual</cite>.
</p><hr size="1">
<a name="SEC_Contents"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>Table of Contents</h1>
<div class="contents">

<ul class="toc">
  <li><a name="toc-Introduction-1" href="#Introduction">1. Introduction</a></li>
  <li><a name="toc-Installation-1" href="#Installation">2. Installation</a></li>
  <li><a name="toc-Electricity-1" href="#Electricity">3. Electricity</a></li>
  <li><a name="toc-Motion-1" href="#Motion">4. Motion</a></li>
  <li><a name="toc-Indentation-1" href="#Indentation">5. Indentation</a></li>
  <li><a name="toc-Editing-1" href="#Editing">6. Editing</a></li>
  <li><a name="toc-Completion-1" href="#Completion">7. Completion</a></li>
  <li><a name="toc-PHP-Comments-1" href="#PHP-Comments">8. PHP Comments</a></li>
  <li><a name="toc-PHP-Documentation-1" href="#PHP-Documentation">9. PHP Documentation</a></li>
  <li><a name="toc-Index-Menu-1" href="#Index-Menu">10. Index Menu</a></li>
  <li><a name="toc-Change-Logs-1" href="#Change-Logs">11. Change Logs</a></li>
  <li><a name="toc-Speedbar-1" href="#Speedbar">12. Speedbar</a></li>
  <li><a name="toc-Customization-1" href="#Customization">13. Customization</a></li>
  <li><a name="toc-Embedded-HTML-1" href="#Embedded-HTML">A. Embedded HTML</a></li>
  <li><a name="toc-Contributors-1" href="#Contributors">B. Contributors</a></li>
  <li><a name="toc-Copying-This-Manual-1" href="#Copying-This-Manual">C. Copying This Manual</a></li>
  <li><a name="toc-Concept-Index-1" href="#Concept-Index">Concept Index</a></li>
  <li><a name="toc-Function-Index-1" href="#Function-Index">Function Index</a></li>
  <li><a name="toc-Keyboard-Index-1" href="#Keyboard-Index">Keyboard Index</a></li>
  <li><a name="toc-Variable-Index-1" href="#Variable-Index">Variable Index</a></li>
</ul>
</div>
<hr size="1">
<a name="SEC_About"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="#Concept-Index" title="Index">Index</a>]</td>
<td valign="middle" align="left">[<a href="#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1>About This Document</h1>
<p>
  This document was generated by <em>root</em> on <em>October 17, 2010</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
</p>
<p>
  The buttons in the navigation panels have the following meaning:
</p>
<table border="1">
  <tr>
    <th> Button </th>
    <th> Name </th>
    <th> Go to </th>
    <th> From 1.2.3 go to</th>
  </tr>
  <tr>
    <td align="center"> [ &lt; ] </td>
    <td align="center">Back</td>
    <td>Previous section in reading order</td>
    <td>1.2.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt; ] </td>
    <td align="center">Forward</td>
    <td>Next section in reading order</td>
    <td>1.2.4</td>
  </tr>
  <tr>
    <td align="center"> [ &lt;&lt; ] </td>
    <td align="center">FastBack</td>
    <td>Beginning of this chapter or previous chapter</td>
    <td>1</td>
  </tr>
  <tr>
    <td align="center"> [ Up ] </td>
    <td align="center">Up</td>
    <td>Up section</td>
    <td>1.2</td>
  </tr>
  <tr>
    <td align="center"> [ &gt;&gt; ] </td>
    <td align="center">FastForward</td>
    <td>Next chapter</td>
    <td>2</td>
  </tr>
  <tr>
    <td align="center"> [Top] </td>
    <td align="center">Top</td>
    <td>Cover (top) of document</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Contents] </td>
    <td align="center">Contents</td>
    <td>Table of contents</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [Index] </td>
    <td align="center">Index</td>
    <td>Index</td>
    <td> &nbsp; </td>
  </tr>
  <tr>
    <td align="center"> [ ? ] </td>
    <td align="center">About</td>
    <td>About (help)</td>
    <td> &nbsp; </td>
  </tr>
</table>

<p>
  where the <strong> Example </strong> assumes that the current position is at <strong> Subsubsection One-Two-Three </strong> of a document of the following structure:
</p>

<ul>
  <li> 1. Section One
    <ul>
      <li>1.1 Subsection One-One
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.2 Subsection One-Two
        <ul>
          <li>1.2.1 Subsubsection One-Two-One</li>
          <li>1.2.2 Subsubsection One-Two-Two</li>
          <li>1.2.3 Subsubsection One-Two-Three &nbsp; &nbsp;
            <strong>&lt;== Current Position </strong></li>
          <li>1.2.4 Subsubsection One-Two-Four</li>
        </ul>
      </li>
      <li>1.3 Subsection One-Three
        <ul>
          <li>...</li>
        </ul>
      </li>
      <li>1.4 Subsection One-Four</li>
    </ul>
  </li>
</ul>

<hr size="1">
<p>
 <font size="-1">
  This document was generated by <em>root</em> on <em>October 17, 2010</em> using <a href="http://www.nongnu.org/texi2html/"><em>texi2html 1.82</em></a>.
 </font>
 <br>

</p>
</body>
</html>