วันอาทิตย์ที่ 21 พฤษภาคม พ.ศ. 2560

3.6 Perl เรียกตัวเองมาแสดงผล

3.6 Perl เรียกตัวเองมาแสดงผล
: โปรแกรมนี้เป็น ภาษา perl ซึ่งทดสอบให้ ประมวลผลได้ใน linux เครื่อง isinthai.com นี้


โปรแกรมนี้ชื่อ testf.pl ถูกเก็บไว้ในห้อง /home/burin/public_html และ link ไปยังห้อง /var/www/html/burin ซึ่งต้องกำหนดให้ chmod 700 เพื่อให้สั่งประมวลผล shell script ตัวนี้ได้ การเรียก Perl script ตัวนี้ ให้ทำตามข้างล่างนี้ >> http://www.isinthai.com/thaiall/testf.pl
    ตัวอย่างโปรแกรมที่ใช้ทดสอบ
    #!/usr/bin/perl
    $filename = "/home/burin/public_html/testf.pl";
    print"Content-type:text/html\n\n";
    print"<body bgcolor=#ffffdd><pre>";
    open(myfile,"$filename");
    @getrec = <myfile>
    close(myfile);  
    $i = 1;
    foreach $r (@getrec) {
       $r =~ s/</</g;
       $r =~ s/>/>/g;
       $r =~ s/"/"/g;
       print $i,". ",$r,"<br>";
       $i++;
    }    
    print"<hr>";
    

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...