当我在codeigniter中使用加密库或加密库时,它会生成加密密钥。但有时它包含" /"。从url获取数据是有问题的。需要在没有" /"。
的情况下生成密钥www.example.com/controller/function/key(sdfsdf / 3423sdf / SDFF + FD-234) 替换为 www.example.com/controller/function/key(sdfsdf3423sdfsdff+fd-234)
答案 0 :(得分:1)
简单的解决方法:
public function my_function() {
$args = func_get_args();
$key = implode('/', $args);
// TODO
}
答案 1 :(得分:1)
<?php if ( have_posts() ) :
if ( is_home() && ! is_front_page() ) : ?>
<header>
<h1 class="page-title screen-reader-text"><?php single_post_title(); ?></h1>
</header>
<?php
endif;
/* Start the Loop */
$my_query = new WP_Query('cat=2,3&showposts=9');
while ( $my_query->have_posts() ) : $my_query->the_post();
get_template_part( 'template-parts/content', get_post_format() );
endwhile;
the_posts_navigation();
else :
get_template_part( 'template-parts/content', 'none' );
endif; ?>
<?php echo do_shortcode('[ajax_load_more container_type="div" post_type="post" offset="9" images_loaded="true"]'); ?>