<input type="email">
не использовать? К чему все эти проверки регулярками? Единственный 100% способ проверить email - отправить на него письмо.$(document).ready(function(){
$("#button").click(function(){
var color = $(this).css("background-color");
var background;
if(color != "rgb(144, 238, 144)"){
background = "lightgreen";
}
else{
background = "rgb(221, 221, 221)";
}
$("#button").css({"background-color":background});
})
});
//Controller
$scope.addDevice = function(){
$scope.addNew = false;
devicesService.addDevice($scope.newDevice).then(function(res){
$scope.getDevices(); //<- убрать
$scope.devices.push(res.device); //<- добавить
$scope.newDevice = '';
}, function(err){
console.error(err);
})
}
//Service
devices.addDevice = function(data){
return $http.post('http://localhost:8080/devices', data);
}
<?php $pages = get_pages(array('child_of' => 1)); ?>
<ul>
<?php foreach ($pages as $page): ?>
<li>
<?php echo get_the_post_thumbnail($page->ID, 'thumbnail'); ?>
<h1><?php echo $page->post_title; ?></h1>
<?php echo $page->post_content; ?>
</li>
<?php endforeach; ?>
</ul>
$ find temp_*.txt | while read A ; do cat $A >> outfile.txt ; done
Текст очень нудной статьи, которая содержит <a href="/article/1">ссылку1</a> и <a href="/article/2">ссылку2</a>.
Текст очень нудной статьи, которая содержит <a ui-sref="article({id:1})">ссылку1</a> и <a ui-sref="article({id:2})">ссылку2</a>.
<?php
header("Content-Type: text/plain; charset=utf-8");
error_reporting(E_ALL | E_STRICT);
set_time_limit(0);
require_once "./wp-config.php";
require_once "./wp-includes/functions.php";
require_once "./wp-includes/formatting.php";
require_once "./wp-includes/taxonomy.php";
require_once "./wp-admin/includes/taxonomy.php";
$json = file_get_contents("test.txt");
$catlist = json_decode($json, true);
//echo "<pre>";
//var_dump($catlist);
//echo "</pre>";
function create_tree_from_list($list, $parent_id = 0) {
foreach($list as $cat => $cat_object){
$name = $cat_object["name"];
$id = wp_create_category($name, $parent_id);
if($id){
echo $name . " (" . count($cat_object['childs']) . "): ID [" . $id . "]<br>";
if(count($cat_object["childs"]) > 0){
create_tree_from_list($cat_object["childs"], $id);
}
}
else{
echo 'Не удалось создать категорию '.$name.'<br>';
}
}
}
create_tree_from_list($catlist);
?>