????

Your IP : 3.133.126.120


Current Path : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-php/
Upload File :
Current File : C:/opt/msys64/ucrt64/share/doc/gettext/examples/hello-php/hello.php

#!@PHP@ -q
<?php
  // Example for use of GNU gettext.
  // This file is in the public domain.
  //
  // Source code of the PHP program.

  setlocale (LC_ALL, "");
  textdomain ("hello-php");
  bindtextdomain ("hello-php", "@localedir@");

  echo _("Hello, world!");
  echo "\n";
  printf (_("This program is running as process number %d."), posix_getpid());
  echo "\n";
?>