私は以下の変数$ test1と$ test2を持っています。下のサイト名を入力する場所をどのように置き換えることができますか?イムのでイライラ..私はあなたがこのいずれかを配置しようとしているところ、私は表示されませんphp - どのように私はこのアクションスクリプトに関数の変数を配置できますか?
<?php
$homepage = file_get_contents('http://www.macsiam.com/sites.php');
preg_match_all('%\'http://([^./]+).[^.]+\.[a-z]{2,4}\'%i', $homepage, $domains, PREG_PATTERN_ORDER);
// $domains[0] is an array of matched full URLs (http://whatever.wherever.com/page.php)
// $domains[1] is an array of matched subdomains (whatever)
$test1 = $domains[1][0];
$test2 = $domains[1][1];
echo $test1;
echo '<br>';
echo $test2;
?>
<?php wp_nonce_field('add-blog', '_wpnonce_add-blog') ?>
<table class="form-table">
<tr class="form-field form-required">
<th scope="row"><?php _e('Site Address') ?></th>
<td>
<?php if (is_subdomain_install()) { ?>
<input name="blog[domain]" type="text" class="regular-text" title="<?php _e('Domain') ?>"/>.<?php echo preg_replace('|^www\.|', '', $current_site->domain);?>
<?php } else {
echo $current_site->domain . $current_site->path ?><input name="blog[domain]" class="regular-text" type="text" title="<?php _e('Domain') ?>"/>
<?php }
echo '<p>' . __('Only the characters a-z and 0-9 recommended.') . '</p>';
?>
</td>
</tr>
<tr class="form-field form-required">
<th scope="row"><?php _e('Site Title') ?></th>
<td><input name="blog[title]" type="text" class="regular-text" title="<?php _e('Title') ?>"/></td>
</tr>
<tr class="form-field form-required">
<th scope="row"><?php _e('Admin Email') ?></th>
<td><input name="blog[email]" type="text" class="regular-text" title="<?php _e('Email') ?>"/></td>
</tr>
<tr class="form-field">
<td colspan="2"><?php _e('A new user will be created if the above email address is not in the database.') ?><br /><?php _e('The username and password will be mailed to this email address.') ?></td>
</tr>
</table>
<?php submit_button(__('Add Site'), 'primary', 'add-site'); ?>
<form method="post" action="<?php echo network_admin_url('site-new.php?action=add-site'); ?>">
正確には、サイト名と言ってどういう意味ですか? –
@Shawnあなたは、あなたが助けが必要なものにもっと具体的になりますか? –