当前位置: 首页>>代码示例>>PHP>>正文


PHP fix_strtoupper函数代码示例

本文整理汇总了PHP中fix_strtoupper函数的典型用法代码示例。如果您正苦于以下问题:PHP fix_strtoupper函数的具体用法?PHP fix_strtoupper怎么用?PHP fix_strtoupper使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了fix_strtoupper函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: trans

    ?>
" />
	<input type="hidden" id="lang_edit_file" value="<?php 
    echo trans('Edit_File');
    ?>
" />
	<input type="hidden" id="lang_new_file" value="<?php 
    echo trans('New_File');
    ?>
" />
	<input type="hidden" id="lang_filename" value="<?php 
    echo trans('Filename');
    ?>
" />
	<input type="hidden" id="lang_file_info" value="<?php 
    echo fix_strtoupper(trans('File_info'));
    ?>
" />
	<input type="hidden" id="lang_edit_image" value="<?php 
    echo trans('Edit_image');
    ?>
" />
	<input type="hidden" id="lang_select" value="<?php 
    echo trans('Select');
    ?>
" />
	<input type="hidden" id="lang_extract" value="<?php 
    echo trans('Extract');
    ?>
" />
	<input type="hidden" id="transliteration" value="<?php 
开发者ID:met-mw,项目名称:SCMS,代码行数:31,代码来源:dialog.php

示例2: fix_strtoupper

    ?>
" />
	<input type="hidden" id="lang_edit_file" value="<?php 
    echo lang_Edit_File;
    ?>
" />
	<input type="hidden" id="lang_new_file" value="<?php 
    echo lang_New_File;
    ?>
" />
	<input type="hidden" id="lang_filename" value="<?php 
    echo lang_Filename;
    ?>
" />
	<input type="hidden" id="lang_file_info" value="<?php 
    echo fix_strtoupper(lang_File_info);
    ?>
" />
	<input type="hidden" id="lang_edit_image" value="<?php 
    echo lang_Edit_image;
    ?>
" />
	<input type="hidden" id="lang_extract" value="<?php 
    echo lang_Extract;
    ?>
" />
	<input type="hidden" id="transliteration" value="<?php 
    echo $transliteration ? "true" : "false";
    ?>
" />
	<input type="hidden" id="convert_spaces" value="<?php 
开发者ID:PotsonHumer,项目名称:OGS_V2,代码行数:31,代码来源:dialog.php

示例3: str_replace

	<?php $protocol = 'http'; ?>
	<input type="hidden" id="current_url" value="<?php echo str_replace(array('&filter='.$filter),array(''),$protocol."://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']); ?>" />
	<input type="hidden" id="lang_show_url" value="<?php echo lang_Show_url; ?>" />
	<input type="hidden" id="copy_cut_files_allowed" value="<?php if($copy_cut_files) echo 1; else echo 0; ?>" />
	<input type="hidden" id="copy_cut_dirs_allowed" value="<?php if($copy_cut_dirs) echo 1; else echo 0; ?>" />
	<input type="hidden" id="copy_cut_max_size" value="<?php echo $copy_cut_max_size; ?>" />
	<input type="hidden" id="copy_cut_max_count" value="<?php echo $copy_cut_max_count; ?>" />
	<input type="hidden" id="lang_copy" value="<?php echo lang_Copy; ?>" />
	<input type="hidden" id="lang_cut" value="<?php echo lang_Cut; ?>" />
	<input type="hidden" id="lang_paste" value="<?php echo lang_Paste; ?>" />
	<input type="hidden" id="lang_paste_here" value="<?php echo lang_Paste_Here; ?>" />
	<input type="hidden" id="lang_paste_confirm" value="<?php echo lang_Paste_Confirm; ?>" />
	<input type="hidden" id="lang_files_on_clipboard" value="<?php echo lang_Files_ON_Clipboard; ?>" />
	<input type="hidden" id="clipboard" value="<?php echo ((isset($_SESSION['RF']['clipboard']['path']) && trim($_SESSION['RF']['clipboard']['path']) != null) ? 1 : 0); ?>" />
	<input type="hidden" id="lang_clear_clipboard_confirm" value="<?php echo lang_Clear_Clipboard_Confirm; ?>" />
	<input type="hidden" id="lang_file_info" value="<?php echo fix_strtoupper(lang_File_info); ?>" />
	<input type="hidden" id="lang_edit_image" value="<?php echo lang_Edit_image; ?>" />
	<input type="hidden" id="lang_extract" value="<?php echo lang_Extract; ?>" />
	<input type="hidden" id="transliteration" value="<?php echo $transliteration?"true":"false"; ?>" />
<?php if($upload_files){ ?>
<!-- uploader div start -->

<div class="uploader">
    <center><button class="btn btn-inverse close-uploader"><i class="icon-backward icon-white"></i> <?php echo lang_Return_Files_List?></button></center>
	<div class="space10"></div><div class="space10"></div>
	<div class="tabbable upload-tabbable"> <!-- Only required for left/right tabs -->
		<?php if($java_upload){ ?>
	    <ul class="nav nav-tabs">
			<li class="active"><a href="#tab1" data-toggle="tab"><?php echo lang_Upload_base; ?></a></li>
			<li><a href="#tab2" id="uploader-btn" data-toggle="tab"><?php echo lang_Upload_java; ?></a></li>
	    </ul>
开发者ID:hendryguna,项目名称:laravel-basic,代码行数:31,代码来源:dialog.php


注:本文中的fix_strtoupper函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。