PHP mod_korean extension Reference
  • Introduction
  • Installation
  • APIs
    • Check Functions
      • check_filename_lib
      • check_htmltbale_lib
      • check_uristr_lib
      • get_microtime_lib
      • human_fsize_lib
      • is_email_lib
      • is_hangul_lib
      • is_iis_lib
      • is_url_lib
      • is_windows_lib
      • buildno_lib
      • version_lib
    • Filesystem Functions
      • filelist_lib
      • getfile_lib
      • getfiletype_lib
      • putfile_lib
      • readfile_lib
      • pcregrep_lib
    • HTML Functions
      • agentinfo_lib
      • autolink_lib
      • get_hostname_lib
      • movepage_lib
      • perror_lib
      • pnotice_lib
    • Charset Functions
      • ncrencode_lib
      • ncrdecode_lib
      • uniencode_lib
      • unidecode_lib
      • utf8encode_lib
      • utf8decode_lib
      • substr_lib
      • postposition_lib
    • Image Functions
      • imgresize_lib
    • Mail Functions
      • mailsource_lib
      • sockmail_lib
Powered by GitBook
On this page
  • Proto type
  • Description
  • Arguments
  • Example
  • See also

Was this helpful?

  1. APIs
  2. HTML Functions

pnotice_lib

Previousperror_libNextCharset Functions

Last updated 5 years ago

Was this helpful?

Proto type

void pnotice_lib(string str [, int use_java] )

Description

지정한 문자열을 출력을 하고 다음을 진행한다. perror 와의 차이는 print_error 는 에러메세지를 출력하고 이전화면으로 전환되는 것에 비해 print_notice 는 메세지를 출력하고 그 다음을 진행하게 된다.

use_java 를 1 로 지정을 하면 JAVA script ALERT 을 이용하여 출력을 한다. 쉘에서 이 함수를 사용 할 경우에는 use_java 를 주지 않으면 된다.

Arguments

Example

<?php
pnotice_lib("경고 예제 입니다.");
echo "이 메세지가 보여야 합니다.";
?>

See also

perror_lib ()