File: sample2.texy

package info (click to toggle)
php-texy 2.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 680 kB
  • ctags: 1,299
  • sloc: php: 4,754; makefile: 4
file content (33 lines) | stat: -rw-r--r-- 685 bytes parent folder | download | duplicates (2)
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
Syntax highlighting in Texy!
****************************



How use clone in PHP4
---------------------

This example show how to implement PHP5 `clone` construction in older PHP4

<?php
if (((int) phpversion() < 5) && (!function_exists('clone')))
 eval('function &clone($obj) { return $obj; }');

$obj = new Object();
$dolly = clone ($obj);
?>




And Now for Something Completely Different:
-------------------------------------------

<script type="text/javascript">
   // function trim() in JavaScript

   function trim(s) {
     while (s.substr(0, 1) == ' ') s = s.substr(1);
     while (s.substr(s.length-1, 1) == ' ') s = s.substr(0, s.length-2);
     return s;
   }
</script>