Dr. Arne JachensDr. Arne Jachens

php Library

closeFigures

Keine Erläuterungen gefunden.

<?php
$fid = fopen("ps.txt", "r");
$line[0] = fgets( $fid, 1024 );
$n=0;
while(!feof($fid)){
  $n++;
  $line[$n] = fgets( $fid, 1024 );
 }
fclose($fid);

for($i=0;$i<$n-2;$i++){
  //printf("%s",$line[$i]);
  $substrings=explode(" ",$line[$i]);
  $m=-1;
  for($j=0;$j<count($substrings);$j++){
    if (!empty($substrings[$j])){
      $m++;
      if ($m==1){
	$string="kill  ".$substrings[$j];
	printf("%s \n",$string);
	system($string);
      }
    }
  } //j
 } //i
?>

Index of Library

1globals.php
2readData.php
3XML_readFile.php
4fraktal.php
5fileGrep.php
6XML_extractTag.php
7writeNamedData.php
8readXmlFile.php
9readNamedData.php
10XML_findAllElements.php
11readFromStdIn.php
12plotResult.php
13dtaus.php
14pdf.php
15fitData.php
16XML_extractElement.php
17readFilenames.php
18writeData.php
19genDTAUS.php
20closeFigures.php
21XML_extractAttribute.php
22enumerateFiles.php
23db.php
24polynominalFit.php
25LaTeXbrief.php
26hex2dec.php

Der gesamte Sourcecode darf gemäß GNU General Public License weiterverbreitet werden.